DEV Community

Discussion on: You Might Not Need Lodash

Collapse
 
mlg profile image
m-lg

Quick way to flatten 1 deep
const feed = [].concat(...sourceArray)

Collapse
 
antjanus profile image
Antonin J. (they/them)

wow. That's awesome! It took me a few to figure out how this works.

Collapse
 
nicolasnarvaez profile image
Nicolás Narváez

i do the same ;)