Skip to content

Instantly share code, notes, and snippets.

@mateo2181
Created July 14, 2017 14:05
Show Gist options
  • Save mateo2181/10709be2e63edcdb43915aab32971a63 to your computer and use it in GitHub Desktop.
Save mateo2181/10709be2e63edcdb43915aab32971a63 to your computer and use it in GitHub Desktop.
Flat Array Javascript
var myArray = [[1, 2],[3, 4, 5], [6, 7, 8, 9]];
var flatArray = [].concat.apply([], myArray);
console.log(flatArray);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment