Skip to content

Instantly share code, notes, and snippets.

@asnimansari
Created June 14, 2019 19:39
Show Gist options
  • Save asnimansari/fc56db59948a454e8060f23e225a9c88 to your computer and use it in GitHub Desktop.
Save asnimansari/fc56db59948a454e8060f23e225a9c88 to your computer and use it in GitHub Desktop.
[[0, 1], [2, 3]].reduce(
(acc, cur) => {
return acc.concat(cur);
},
[1, 2]
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment