Problems with arrays
I'm having some trouble with arrays in Appery lately. Right now, I have 2d array that I want to access values from to create my own json object, but it keeps returning 'cannot read property 0 or undefined'
However, if I log it...
code
console.log(data[k][i*arrayLength+j]);
/code
it will log the result and then throw the error. Something seems fishy to me, it doesn't seem like it should work this way.