For further actions, you may consider blocking this person and/or reporting abuse
Read next
How to customize Strapi Dashboard / Home Page: The Right Way
Gaurav Adhikari -
Dark Portfolio: A Fully Responsive Next.js 15 + TypeScript + Tailwind CSS Project
Codex -
Coming Full Circle: It starts and ends with Git and GitHub
Peter Wan -
Why Monorepo Projects Sucks: Performance Considerations with Nx
Jeferson F Silva -
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.