Skip to content

Instantly share code, notes, and snippets.

@xie-qianyue
Created April 1, 2016 09:15
Show Gist options
  • Save xie-qianyue/6a6fa6581920d049589817f1dde3ed44 to your computer and use it in GitHub Desktop.
Save xie-qianyue/6a6fa6581920d049589817f1dde3ed44 to your computer and use it in GitHub Desktop.
function flatten(arr) {
return [].concat.apply([], arr);
}
function flattenES6(arr) {
return [].concat(...arr);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment