Answers for "forEaach js"

131

javascript foreach

const avengers = ['thor', 'captain america', 'hulk'];
avengers.forEach((item, index)=>{
	console.log(index, item)
})
Posted by: Guest on April-27-2020
4

js foreach

var stringArray = ["first", "second"];

myArray.forEach((string, index) => {
  	var msg = "The string: " + string + " is in index of " + index; 
	console.log(msg);
	
	// Output:
	// The string: first is in index of 0
	// The string: second is in index of 1
});
Posted by: Guest on October-01-2020
0

javascript foreach

arr.forEach(function callback(currentValue, index, array) {
    // tu iterador
}[, thisArg]);
Posted by: Guest on June-05-2021

Code answers related to "Javascript"

Browse Popular Code Answers by Language