Skip to content

Instantly share code, notes, and snippets.

@GheorgheoiuNicolae
Created January 16, 2017 19:39
Show Gist options
  • Save GheorgheoiuNicolae/141e32bc303b60464af461ccb9370c26 to your computer and use it in GitHub Desktop.
Save GheorgheoiuNicolae/141e32bc303b60464af461ccb9370c26 to your computer and use it in GitHub Desktop.
function flatten(arr) {
var res = [];
for(var i = 0; i < arr.length; i++) {
if(Array.isArray(arr[i])) {
res = res.concat(flatten(arr[i]));
} else {
res.push(arr[i]);
}
}
return res;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment