For further actions, you may consider blocking this person and/or reporting abuse
Read next

Vue.js Reactivity System: Ref, reactive, shallowRef, & shallowReactive
Eduard Krivanek -

Configuração do Windows para desenvolvimento
Cadu Magalhães -

Sharing my Story: From Public School to the Largest Technology Company in the World
Glaucia Lemos -

Understanding React and React Native Through the Principle of Single Responsibility
Akbar Julian Khatibi -
Top comments (6)
Very easy, if you need to return an array, use map. Otherwise forEach.
Both iterate over the collection, one returns values the other doesn't. There's no difference in the iteration part.
People like to make rules on when to use them but I use map, and reduce way more than any other method regardless of mutability. Mutability is a choice of what we do with the data, not the function's themselves. We can choose to mutate or not using just map.
Map for immutable new array, forEach for mutations / side effects.
Like others have said, they both do very different things. If you don't need to return an array, use
forEach
:)Thank you so much for your opinions !
Depends on the usecase. I like map.