Skip to content

Instantly share code, notes, and snippets.

@onmax
Created April 9, 2022 13:52
Show Gist options
  • Save onmax/cbbf3ef2ad5488cbed7086874e22ad95 to your computer and use it in GitHub Desktop.
Save onmax/cbbf3ef2ad5488cbed7086874e22ad95 to your computer and use it in GitHub Desktop.
Flatten arry in JS
// https://stackoverflow.com/a/15030117/8312883
function flatten(arr) {
return arr.reduce(function (flat, toFlatten) {
return flat.concat(Array.isArray(toFlatten) ? flatten(toFlatten) : toFlatten);
}, []);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment