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 trialNigel Msipa
Full Stack JavaScript Techdegree Student 12,060 Pointswhy use map as opposed to forEach?
I'm wondering why use map as opposed to forEach?
1 Answer
Peter Vann
36,427 PointsHi 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!
Nigel Msipa
Full Stack JavaScript Techdegree Student 12,060 PointsNigel Msipa
Full Stack JavaScript Techdegree Student 12,060 PointsThanks a lot, that makes a lot of sense!
Chris Adams
Front End Web Development Techdegree Graduate 29,423 PointsChris Adams
Front End Web Development Techdegree Graduate 29,423 PointsReally helpful comment Peter, thank you!