GitLab Interview Question

Difference between .forEach and .map?

Interview Answer

Anonymous

May 12, 2019

.forEach loops over each item on an array. .map loops through all items of an array and returns a new array.