Skip to content

Instantly share code, notes, and snippets.

@nimahkh
Created September 14, 2019 05:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nimahkh/8dd36bcd628e71dc9a520b6efe2a0d92 to your computer and use it in GitHub Desktop.
Save nimahkh/8dd36bcd628e71dc9a520b6efe2a0d92 to your computer and use it in GitHub Desktop.
javascript flat infinity
const array=[[1,2,[3]],4];
array.flat(Infinity)
//Array(4) [ 1, 2, 3, 4 ]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment