Skip to content

Instantly share code, notes, and snippets.

@isaachinman
Created April 8, 2019 17:42
Show Gist options
  • Save isaachinman/88f59452cad06cd7f47b3d90f6243b3d to your computer and use it in GitHub Desktop.
Save isaachinman/88f59452cad06cd7f47b3d90f6243b3d to your computer and use it in GitHub Desktop.
Recursively flatten an array of integers
const flattenArray = arr =>
arr.reduce((acc, cur) => {
if (Array.isArray(cur)) {
return acc.concat(flattenArray(cur))
}
return acc.concat(cur)
}, [])
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment