Answers for "array?.[i] in javascript"

141

javascript array

//create an array like so:
var colors = ["red","blue","green"];

//you can loop through an array like this:
for (var i = 0; i < colors.length; i++) {
    console.log(colors[i]);
}
Posted by: Guest on July-01-2019
-3

javascript array

window.location.href
Posted by: Guest on December-12-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language