-
-
Save linglung/bae671871afca330363061cf30f2c826 to your computer and use it in GitHub Desktop.
Javascript Flatten (for one level nested arrays) - Useful for google apps scripts on spreadsheets
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Takes and array of arrays matrix and return an array of elements. | |
function flatten(arrayOfArrays){ | |
return [].concat.apply([], arrayOfArrays); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment