DEV Community

Discussion on: .map() vs .forEach()

Collapse
 
seangwright profile image
Sean G. Wright

Those are good points.

In much of the code I see, map and filter are used with pure functions.

So, despite what the language allows, the use of them implies pure functions in my experience.

Following this pattern means you don't have to worry about the scenario you describe.