Skip to content

Instantly share code, notes, and snippets.

@shubham43MP
Created August 13, 2024 08:54
Show Gist options
  • Select an option

  • Save shubham43MP/b619296b1d53aa821339ee34f4cb8436 to your computer and use it in GitHub Desktop.

Select an option

Save shubham43MP/b619296b1d53aa821339ee34f4cb8436 to your computer and use it in GitHub Desktop.
Flatten JS question
FLATTEN FUNCTION
// [1,2,3,[4,5, [6, 9]]]
// [1,2,3,4,5, 6, 9]
// []
// []
// [[], 1, [[]]]
// [1]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment