forEach
map
filter
find
reduce
forEachlet arr = [1, 2, 3, 4];
arr.forEach((item) => {
console.log(item + 1);
2020-10-13