Is someArray[index] a faster way to get to a value than someObject.field?
E.G.:
if(intArray[i] == 42) {//do stuff}
VS
if(someObject.x == 42) {//do stuff}
I will try to test it soon and post the results; just wondering if you all had any thoughts.