Created
April 20, 2021 13:07
-
-
Save JohnMarkT/4f0eaab2033c728b9906cbf2e008a57e to your computer and use it in GitHub Desktop.
Print 1 to 100 without using numbers
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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