For further actions, you may consider blocking this person and/or reporting abuse
Read next
The future of software architecture: focus on event-driven architecture
ATIXAG -
Conquering SeaTunnel Challenges: Your Go-To Solutions Revealed
Apache SeaTunnel -
π Weβre Hiring: .NET & Angular Developer! π
HM Innovation Solutions -
KaibanJS v0.10.1 is Here! Explore the New Tools π
Dariel Vila -
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.