You are viewing a single comment's thread from:RE: Arrays in JavaScriptView the full contextimpshum (43)in #javascript • 6 years ago You can also loop over your array like so... for (var i in myArray) { console.log(myArray[i]); }
Thanks for advice!