An array method that executes a provided function once for each array element.

const numbers = [1, 2, 3, 4];

numbers.forEach(function(number) {
  console.log(number);
});