Skip to content

Instantly share code, notes, and snippets.

@yardfarmer
Created September 11, 2014 13:40
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 yardfarmer/d41e860699f5224134fb to your computer and use it in GitHub Desktop.
Save yardfarmer/d41e860699f5224134fb to your computer and use it in GitHub Desktop.
var a = 1;
var b = ++a; // b = 2, a = 2;
a = 1;
b = a++; // b = 1; a = 2;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment