Skip to content

Instantly share code, notes, and snippets.

@aherve
Created August 30, 2017 14:28
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save aherve/3c958b02c8262e64e0873f05377129f1 to your computer and use it in GitHub Desktop.
Save aherve/3c958b02c8262e64e0873f05377129f1 to your computer and use it in GitHub Desktop.
// flatten an array of arrays
const arrayOfArray = [ [1, 2], [3, 4], [[5, 6]] ]
const flattened = arrayOfArray.reduce((res, a) => [...res, ...a], [] )
console.log(flattened) // => [1, 2, 3, 4, [5, 6]]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment