Skip to content

Instantly share code, notes, and snippets.

@gitfaf
Created August 17, 2017 22:53
Show Gist options
  • Save gitfaf/b3845c83502b7c519e8b8fc37537cd8d to your computer and use it in GitHub Desktop.
Save gitfaf/b3845c83502b7c519e8b8fc37537cd8d to your computer and use it in GitHub Desktop.
function flaten (array) {
return array.reduce( (acc, curr) => acc.concat(curr), []);
}
let aoa = [
[1, 2, 3, 4],
[5, 6],
[7, 8, 9]
];
console.log(flaten(aoa));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment