Skip to content

Instantly share code, notes, and snippets.

@maxmckenzie
Last active February 24, 2017 15:53
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 maxmckenzie/d62d075abf8ce1f94c421f2672d55497 to your computer and use it in GitHub Desktop.
Save maxmckenzie/d62d075abf8ce1f94c421f2672d55497 to your computer and use it in GitHub Desktop.
// Spread operirators baby
var Array = [[1, 2],[3, 4, 5], [6, 7, 8, 9]];
var result = [].concat(...Array);
console.log(result);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment