Skip to content

Instantly share code, notes, and snippets.

@z-------------
Last active October 26, 2019 11:05
Show Gist options
  • Save z-------------/055cb2242bb896824f4ac61bede7f6d1 to your computer and use it in GitHub Desktop.
Save z-------------/055cb2242bb896824f4ac61bede7f6d1 to your computer and use it in GitHub Desktop.
const flatten = list => {
if (!list.length) return [];
else {
const x = list[0];
if (Array.isArray(x)) return flatten([...x]).concat(flatten(list.slice(1)));
else return [x].concat(flatten(list.slice(1)));
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment