DEV Community

Discussion on: Convert Iterable to Array using Spread

Collapse
 
nickytonline profile image
Nick Taylor

I like using spread as well, but if you want to e.g. convert a NodeList to an array and then map over it, consider using Array.from.

I discovered this summer that Array.from has a second argument which is a map callback function that is called as each item is created.

Looking forward to your next post!

Collapse
 
samanthaming profile image
Samantha Ming

That totally is the benefit with Array.from! Awesome point, let me add it to the code notes😁👍

Collapse
 
mateiadrielrafael profile image
Matei Adriel

Whoa, thats awesome