Skip to content

Instantly share code, notes, and snippets.

@omarkdev
Created February 20, 2020 20:19
Show Gist options
  • Save omarkdev/0876234bd778a6302072b16c1da9f81f to your computer and use it in GitHub Desktop.
Save omarkdev/0876234bd778a6302072b16c1da9f81f to your computer and use it in GitHub Desktop.
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