Created
February 20, 2020 20:19
-
-
Save omarkdev/0876234bd778a6302072b16c1da9f81f 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 arr1 = ['a', 'b', , , , ['c', , 1, null, undefined, '', 0]]; | |
const arr1Flatted = arr1.flat(); | |
// ["a", "b", "c", 1, null, undefined, "", 0] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment