Skip to content

Instantly share code, notes, and snippets.

@omarkdev
Created February 20, 2020 20:10
Show Gist options
  • Save omarkdev/e9d88d06539941210dcd7d149daeefa9 to your computer and use it in GitHub Desktop.
Save omarkdev/e9d88d06539941210dcd7d149daeefa9 to your computer and use it in GitHub Desktop.
const arr1 = ['a', 'b', 'c', [1, 2, 3]];
const arr1Flatted = arr1.flat();
// ["a", "b", "c", 1, 2, 3]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment