Skip to content
Advertisement

Reactjs map works but forEach doesn’t

I’m struggling to understand the difference between forEach and map. In the following render function if the ‘forEach’ is replaced with ‘map’ it works. I don’t understand why it doesn’t work with the ‘forEach’. Both {item.id} and {item.text} are present with both methods. So, why are the props for ‘TodoItem’ not being set when using ‘forEach’ ?

JavaScript

So if ‘forEach’ doesn’t return anything how come this doesn’t work either:

JavaScript

Advertisement

Answer

The map function returns an array of items and forEach just loop over them. To make this code work use :

JavaScript
User contributions licensed under: CC BY-SA
2 People found this is helpful
Advertisement