Skip to content

Instantly share code, notes, and snippets.

@fcarlone
Last active May 2, 2016 23:34
Show Gist options
  • Save fcarlone/df5c6cb3c42f997797968ba215ed4064 to your computer and use it in GitHub Desktop.
Save fcarlone/df5c6cb3c42f997797968ba215ed4064 to your computer and use it in GitHub Desktop.
JavaScript - Flatten Array
var flatten = function(array) {
var results = [];
for(var i = 0; i < array.length; i++) {
if(Array.isArray(array[i])) {
results = results.concat(flatten(array[i]));
} else {
results.push(array[i]);
}
}
return results;
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment