Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

JavaScript React Basics (2018) Introducing Props Iterating and Rendering with map()

why use map as opposed to forEach?

I'm wondering why use map as opposed to forEach?

1 Answer

Hi Nigel!

The primary difference is that map returns an array as a value (the transformed original array) where ForEach returns 'undefined':

And map can be easily daisy-chained with other ES6 array functions (such as filter, sort, reduce, etc.).

More info:

https://www.freecodecamp.org/news/4-main-differences-between-foreach-and-map/

https://codeburst.io/javascript-map-vs-foreach-f38111822c0f

https://stackoverflow.com/questions/34426458/javascript-difference-between-foreach-and-map

I hope that helps.

Stay safe and happy coding!

Thanks a lot, that makes a lot of sense!

Really helpful comment Peter, thank you!