Skip to content

Instantly share code, notes, and snippets.

@mx-rk-quyenl
Created January 27, 2021 10:20
Show Gist options
  • Save mx-rk-quyenl/d03b8e823e31ea513e6d7287f05bc819 to your computer and use it in GitHub Desktop.
Save mx-rk-quyenl/d03b8e823e31ea513e6d7287f05bc819 to your computer and use it in GitHub Desktop.
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