Answers for "how to loop through an array in javascript with index es6"

2

js iterate array index

for (let [index, val] of array.entries()) {
        // your code goes here    
}
Posted by: Guest on May-16-2021
1

loop through arrays in es6

var sandwiches = [
	'tuna',
	'ham',
	'turkey',
	'pb&j'
];

sandwiches.forEach(function (sandwich, index) {
	console.log(index);
	console.log(sandwich);
});

// returns 0, "tuna", 1, "ham", 2, "turkey", 3, "pb&j"
Posted by: Guest on April-23-2020

Code answers related to "how to loop through an array in javascript with index es6"

Code answers related to "Javascript"

Browse Popular Code Answers by Language