Skip to content

Instantly share code, notes, and snippets.

@avishwakarma
Last active May 2, 2017 06:44
Show Gist options
  • Save avishwakarma/0148adbf184f8b8de63827ad50e682c2 to your computer and use it in GitHub Desktop.
Save avishwakarma/0148adbf184f8b8de63827ad50e682c2 to your computer and use it in GitHub Desktop.
JavaScript Array Flat / Merge
/**
* flat / merge all sub array into one array
* @uses [['1', '2'], ['3', '4], '5', '6'].flat(); // ['1', '2', '3', '4', '5', '6']
*/
Array.prototype.flat = function(){
return [].concat.apply([], this);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment