Answers for "iterating list in javascript"

14

js for loop

var i; //defines i
for (i = 0; i < 5; i++) { //starts loop
  console.log("The Number Is: " + i); //What ever you want
}; //ends loop
//Or:
console.log("The Number Is: " + 0);
console.log("The Number Is: " + 1);
console.log("The Number Is: " + 2);
console.log("The Number Is: " + 3);
console.log("The Number Is: " + 4);
//They do the same thing!
//Hope I helped!
Posted by: Guest on June-21-2020
5

iterate through list javascript

const array = ["hello", "world"];

for (item of array) {
	//DO THIS
}
Posted by: Guest on May-24-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language