Skip to content

Instantly share code, notes, and snippets.

@spanuska
Created April 12, 2016 19:47
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 spanuska/cc46b545c58c6f90fcc1e152d860d2dd to your computer and use it in GitHub Desktop.
Save spanuska/cc46b545c58c6f90fcc1e152d860d2dd to your computer and use it in GitHub Desktop.
var i = 0;
console.log(i++);
var i = 0;
console.log(i += 1);
var i = 0;
console.log(++i);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment