Skip to content

Instantly share code, notes, and snippets.

@tommylinks
Created October 30, 2024 09:16
Show Gist options
  • Save tommylinks/1b594e9579608f31b162088f7b117089 to your computer and use it in GitHub Desktop.
Save tommylinks/1b594e9579608f31b162088f7b117089 to your computer and use it in GitHub Desktop.
Generate array from number
Array.from({ length: 3 }) => [undefined, undefined, undefined]
Array.from(Array(3).keys()) => [1, 2, 3]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment