Skip to content

Instantly share code, notes, and snippets.

@devsergiy
Created May 23, 2019 16:01
Show Gist options
  • Save devsergiy/a0026a91d5ac9bc0dadacf7a1aa38482 to your computer and use it in GitHub Desktop.
Save devsergiy/a0026a91d5ac9bc0dadacf7a1aa38482 to your computer and use it in GitHub Desktop.
function unfold(arr) {
var result = [];
arr.forEach(function(elem, i) {
if ( elem instanceof Array) {
intermediate = unfold(elem);
result = result.concat(intermediate)
return
}
result.push(elem);
})
return result;
}
console.log(unfold([[1,2,[3]],4]))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment