Skip to content

Instantly share code, notes, and snippets.

@malbernaz
Created February 13, 2019 01:18
Show Gist options
  • Select an option

  • Save malbernaz/3ffd16c468e160507564350c6a4f804f to your computer and use it in GitHub Desktop.

Select an option

Save malbernaz/3ffd16c468e160507564350c6a4f804f to your computer and use it in GitHub Desktop.
function flatten(array) {
return array.reduce(
(a, b) => a.concat(b instanceof Array ? flatten(b) : b),
[]
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment