Skip to content

Instantly share code, notes, and snippets.

@mendes5
Created October 22, 2021 15:51
Show Gist options
  • Select an option

  • Save mendes5/da1db462b535c85aeb37d2ffcc3a2b91 to your computer and use it in GitHub Desktop.

Select an option

Save mendes5/da1db462b535c85aeb37d2ffcc3a2b91 to your computer and use it in GitHub Desktop.
Cursed for loop using const
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