DAZ Script now seems to follow the ES 5 standard - or has it always followed it? The following example
seems to work:
var x = {a:11, b:22, c:33};
Object.keys(x).forEach( function(key, idx){
print(key, x[key], idx);
} )
DAZ Script now seems to follow the ES 5 standard - or has it always followed it? The following example
seems to work:
var x = {a:11, b:22, c:33};
Object.keys(x).forEach( function(key, idx){
print(key, x[key], idx);
} )