Answers for "how to loop through array of numbers in javascript using for of"

14

javascript loop through array

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

Code answers related to "how to loop through array of numbers in javascript using for of"

Code answers related to "Javascript"

Browse Popular Code Answers by Language