javascript for loop
var colors=["red","blue","green"];
for (let i = 0; i < colors.length; i++) {
console.log(colors[i]);
}
javascript for loop
var colors=["red","blue","green"];
for (let i = 0; i < colors.length; i++) {
console.log(colors[i]);
}
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!
javascript loop
//There are many loops in javascript that get the job done
let colors = ["red","blue","green"];
//More detail about loop => shorturl.at/avIRW
for(let i in colors){
console.log(colors[i])
}
//More detail about loop => shorturl.at/hBUW2
colors.forEach(color => {
console.log(color)
})
//More detail about loop => shorturl.at/pLOV6
colors.map(color => {
console.log(color)
})
//More detail about loop => shorturl.at/hlstV
for(let i = 0; i < colors.length; i++){
console.log(colors[i])
}
//More detail about loop => shorturl.at/iKS38
let i = 0;
while ( i < colors.length ){
console.log(colors[i])
i++
}
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us