Skip to content

Instantly share code, notes, and snippets.

@sylbru
Created February 16, 2023 15:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sylbru/cdf634ee0087aeae5180588fa319ec6b to your computer and use it in GitHub Desktop.
Save sylbru/cdf634ee0087aeae5180588fa319ec6b to your computer and use it in GitHub Desktop.
Print numbers 0 through 100 without using characters 1-9 in the code
n = 0; while (n <= 0xA * 0xA) { console.log(n); n++; }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment