I would like to create object or array that will start loop from #32. I have tried something like this:
var test = [{'recID':"32",'optionalCol':"first",'recID':"33",'optionalCol':"last",'recID':"34",'optionalCol':"age"}];
This did not work for me, I tried to do the loop like this:
for(var i=32; i < test.lenght; i++) {
console.log(test[i].recID);
}
I'm wondering if this is possible and how my object/array has to be structured in order to be able to start my loop from 32? If anyone can help please let me know.
test.lengthnottest.lenght, not sure if that was just a typo.