Created
October 22, 2021 15:51
-
-
Save mendes5/da1db462b535c85aeb37d2ffcc3a2b91 to your computer and use it in GitHub Desktop.
Cursed for loop using const
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
| for (const x = { i: 0 }; x.i < 10; x.i++) { | |
| console.log(x.i); | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment