Skip to content

Instantly share code, notes, and snippets.

@MauricioMoraes
Created October 22, 2015 12:00
Show Gist options
  • Star 9 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save MauricioMoraes/225afcc9dd72acf1511f to your computer and use it in GitHub Desktop.
Save MauricioMoraes/225afcc9dd72acf1511f to your computer and use it in GitHub Desktop.
Javascript Flatten (for one level nested arrays) - Useful for google apps scripts on spreadsheets
// Takes and array of arrays matrix and return an array of elements.
function flatten(arrayOfArrays){
return [].concat.apply([], arrayOfArrays);
}
@mommalibrarian
Copy link

The before and after arrays look the same in Logger.log. How can you tell they have changed?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment