Skip to content

Instantly share code, notes, and snippets.

@yomotsu
Last active June 2, 2016 02:41
Show Gist options
  • Save yomotsu/e53bba892c31771fb5cd10d701676606 to your computer and use it in GitHub Desktop.
Save yomotsu/e53bba892c31771fb5cd10d701676606 to your computer and use it in GitHub Desktop.
var array = [ [ 1, 2 ], [ 3, 4 ], [ 5, 6 ] ];
var flattened = [].concat.apply([], array );
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