RE: Arrays in JavaScript
You can also loop over your array like so...
for (var i in myArray) { console.log(myArray[i]); }
RE: Arrays in JavaScript