Answers for "iterate over loop through array javascript foreach"

22

foreach over array javascript

var colors = ["red", "blue", "green"];
colors.forEach(function(color) {
    console.log(color);
});
Posted by: Guest on July-19-2019
0

how to use the foreach fnction javascript loop through array

const names = ['Anthony','Stacey','Mason','Gracie','Koda','Nani'];

forEach(function(name) {
	console.log(name);
});
Posted by: Guest on April-16-2021

Code answers related to "iterate over loop through array javascript foreach"

Code answers related to "Javascript"

Browse Popular Code Answers by Language