Skip to content

Instantly share code, notes, and snippets.

@neos1803
Created October 6, 2022 04:33
Show Gist options
  • Save neos1803/b7b34f4e3d52ba0384e62e7cdc68cc65 to your computer and use it in GitHub Desktop.
Save neos1803/b7b34f4e3d52ba0384e62e7cdc68cc65 to your computer and use it in GitHub Desktop.
Array increment of n in javascript one liner
const example = Array.from({ length: 1000 }, (_, i) => String(i + 1));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment