Answers for "loop in function js"

14

javascript loop through array

var colors = ["red","blue","green"];
colors.forEach(function(color) {
  console.log(color);
});
Posted by: Guest on March-06-2020
1

forloop in js

for(i = 0; i < x; ++i){
  //Loop, x can be replaced with any integer; 
}
Posted by: Guest on September-18-2020
1

javascript loop if statement

// a loop is where you say i = 5 and if i < 6 {
 // print("hdyugvryvg");
// it means i = 5 and 6 is greater than 5 so it should print out hdyugvryvg 5 times
//}

// example

for (let i = 0; i < 10000; i++) {
 	console.log('huduiduin 100000 times'); 
}



// dont try this put a lower number this nearly crashed my browser
Posted by: Guest on September-07-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language