Skip to content

Instantly share code, notes, and snippets.

@ericorruption
Created February 7, 2019 13:44
Show Gist options
  • Save ericorruption/b0f75235fc800e3beb5322dbb1ce518d to your computer and use it in GitHub Desktop.
Save ericorruption/b0f75235fc800e3beb5322dbb1ce518d to your computer and use it in GitHub Desktop.
const nested = [[0, 1],[2, 3], 4]
const flat = = nested.reduce((acc, it) => [...acc, ...it], []);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment