Skip to content

Instantly share code, notes, and snippets.

@mgmgpyaesonewin
Created April 24, 2018 02:17
Show Gist options
  • Save mgmgpyaesonewin/d07955823d1edf0d38fa5cd643fa997a to your computer and use it in GitHub Desktop.
Save mgmgpyaesonewin/d07955823d1edf0d38fa5cd643fa997a to your computer and use it in GitHub Desktop.
Flattern JS Array
let res = [ [ 8, 5, 11 ], [ 6, 3, 9 ] ]
res = [].concat(...res);
return res;
// output -> [ 8, 5, 11, 6, 3, 9 ]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment