Answers for "foreach javascript\"

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
-1

forEach javascript

const fruits = ['mango', 'papaya', 'pineapple', 'apple'];

fruits.forEach(function(fruit){
  console.log('I want to eat a ' + fruit)
});
Posted by: Guest on April-26-2021

Code answers related to "Javascript"

Browse Popular Code Answers by Language