Created
January 27, 2021 10:20
-
-
Save mx-rk-quyenl/d03b8e823e31ea513e6d7287f05bc819 to your computer and use it in GitHub Desktop.
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 arrays = [[10], 50, [100, [2000, 3000, [40000]]]]; | |
arrays.flat(Infinity); | |
// results: | |
// [ 10, 50, 100, 2000, 3000, 40000 ] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment