foeach javascript code example

Example 1: foreach javascript

let words = ['one', 'two', 'three', 'four'];
words.forEach((word) => {
  console.log(word);
});
// one
// two
// three
// four

Example 2: foreach javascript

var items = ["item1", "item2", "item3"]
var copie = [];

items.forEach(function(item){
  copie.push(item);
});

Example 3: foreach javascript

Used to execute the same code on every element in an array
Does not change the array
Returns undefined

Example 4: foreach javascript

arr.forEach(callback(currentValue [, index [, array]])[, thisArg]);

Tags:

Php Example