You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
aha, I see, you are trying to use an empty object ({}) but this doesn't support those currently as it says Unsupported use of object literal expression as a comment in the generated C source code.
`var indices = [1, 2, 3];
var values = ["1", "2", "3"];
var obj = { };
for(var x = 0; x < indices.length; x++) {
obj[indices[x]] = values[x];
}
for(var y = 0; y < indices.length; y++) {
console.log(obj[indices[y]]);
}`
The text was updated successfully, but these errors were encountered: