I came across this code and was wondering what is it? Is it an array?
test = {a: [1,0,0], b:[0,1,0], c:[0,0,1]};
How would I get the array for A for instance?
console.log(bases[a]);
^ Results in "Uncaught ReferenceError: a is not defined"
The output of console.log(test); is
Object {a: Array[3], b: Array[3], c: Array[3]}