Answers for "in and of in for loop in js"

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
2

javascript for of

const numbers = [1,2,3,4];

for(const item of numbers){
  console.log(item);
}
Posted by: Guest on October-04-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language