Answers for "for loop in java script"

220

javascript for loop

var colors=["red","blue","green"];
for (let i = 0; i < colors.length; i++) { 
  console.log(colors[i]);
}
Posted by: Guest on June-17-2019
17

javascript for loop

for (var i; i < 10; i++) {
  
}
Posted by: Guest on May-26-2020
31

javascript loop

let array = ['Item 1', 'Item 2', 'Item 3'];

array.forEach(item => {
	console.log(item); // Logs each 'Item #'
});
Posted by: Guest on February-20-2020
12

javascript loop

let array = ['Item 1', 'Item 2', 'Item 3'];

for (let index = 0; index < array.length; index++) {
  console.log("index", index);
  console.log("array item", array[index]);
}
Posted by: Guest on March-04-2020
3

loop javascript

// infinite for loop
for(let i = 1; i > 0; i++) {
    // block of code
}
Posted by: Guest on December-03-2020
3

javascript loop

JavaScript supports different kinds of loops:

for - loops through a block of code a number of times
for/in - loops through the properties of an object
for/of - loops through the values of an iterable object
while - loops through a block of code while a specified condition is true
do/while - also loops through a block of code while a specified condition is true

for (let i = 0; i < cars.length; i++) {
  text += cars[i] + "<br>";
}
Posted by: Guest on August-06-2021

Code answers related to "Javascript"

Browse Popular Code Answers by Language