Created
September 14, 2019 05:05
-
-
Save nimahkh/8dd36bcd628e71dc9a520b6efe2a0d92 to your computer and use it in GitHub Desktop.
javascript flat infinity
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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