Answers for "forEach method in js"

130

javascript foreach

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

javascript foreach

var colors = ['red', 'blue', 'green'];

colors.forEach(function(color) {
  console.log(color);
});
Posted by: Guest on June-27-2019
20

javascript foreach example

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

javascript foreach syntax

const marks = [12, 17, 14];
let sum = 0;

marks.forEach(mark => {
  sum += mark;
});
Posted by: Guest on October-31-2020
-1

how to use foreach

// In the case of swiftui's foreach
// Make sure to import swiftui first as foreach is not native

let names = ["ken","ben"]

ForEach(names) { name in
	Text(name)
}

// this loops through the names, and creates a text view for each name
// so it is something like

Text("ken")
Text("ben")
Posted by: Guest on August-12-2021

Code answers related to "Javascript"

Browse Popular Code Answers by Language