Skip to content

Instantly share code, notes, and snippets.

@dmitry-vsl
Created June 15, 2016 12:55
Show Gist options
  • Save dmitry-vsl/60065ffe3ed775845230542f2e553e8c to your computer and use it in GitHub Desktop.
Save dmitry-vsl/60065ffe3ed775845230542f2e553e8c to your computer and use it in GitHub Desktop.
function flatten(arr){
var result = [];
function doFlatten(arr){
if(Array.isArray(arr)){
arr.forEach(doFlatten);
}else{
result.push(arr);
}
}
doFlatten(arr);
return result;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment