Answers for "javascript for loo"

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
8

javascript for

let str = "";

for (let i = 0; i < 9; i++) {
  str = str + i;
}

console.log(str);
// expected output: "012345678"
Posted by: Guest on February-16-2020
15

loop javascript

for(let i = 0; i < arr.length; i++){

}
Posted by: Guest on March-02-2021
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
9

for of loop javascript

const array1 = ['a', 'b', 'c'];

for (const element of array1) {
  console.log(element);
}

// expected output: "a"
// expected output: "b"
// expected output: "c"
Posted by: Guest on March-02-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language