DEV Community

Discussion on: Array Flattening in 5 lines

Collapse
 
georgecoldham profile image
George

You may also like Array.flat()

Supported on all browsers except edge and ie. if you are already using Babel then you can use without issue.

Collapse
 
kaos profile image
Kai Oswald

HOW TO FLATTEN AN ARRAY WITH JUST 1 LINE OF CODE! DEVS HATE HIM

Collapse
 
dhilipkmr profile image
Dhilip kumar

Post here is to understand how we could write utility functions ourselves. Getting to know what's happening under the Hood.😅

Collapse
 
georgecoldham profile image
George

Oh absolutely! It’s a valuable thing being able to understand what’s going on behind the scenes.

I only suggested .flat() incase you or others weren’t aware of it. As Its a relatively new addition.

Thread Thread
 
dhilipkmr profile image
Dhilip kumar

Sure thing Agreed. I'll add about Array.flat too in the above Post . 😄