Answers for "call for loop with html in javascript"

14

javascript loop through array

var colors = ["red","blue","green"];
colors.forEach(function(color) {
  console.log(color);
});
Posted by: Guest on March-06-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

Code answers related to "call for loop with html in javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language