Skip to content

Instantly share code, notes, and snippets.

@JohnMarkT
Created April 20, 2021 13:07
Show Gist options
  • Save JohnMarkT/4f0eaab2033c728b9906cbf2e008a57e to your computer and use it in GitHub Desktop.
Save JohnMarkT/4f0eaab2033c728b9906cbf2e008a57e to your computer and use it in GitHub Desktop.
Print 1 to 100 without using numbers
const ten = 'no numbers'.length;
[...Array(ten * ten).keys()].forEach(i => console.log(++i));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment