A forEach metódust egy függvény végrehajtására használják a tömb minden eleméhez.
forEach
forEach(callbackFn) forEach(callbackFn, thisArg)
const array1 = ['a', 'b', 'c'] array1.forEach((element) => console.log(element)) // Expected output: "a" // Expected output: "b" // Expected output: "c"