Question
Real-time debug looping in thingworx complier without using loggers
var productionData = [];
for (var i = 0; i < 10; i++) {
productionData.push({
"CurrentIteration": i,
"Value": i + 1 //Change it as per your requirement. Like infotable columns names etc.
});
}
throw JSON.stringify(productionData);
//For Specific columns and values/items in array use this: "productionData[0].Value"


