Skip to content

Instantly share code, notes, and snippets.

@spanuska
Created April 12, 2016 19:47
Embed
What would you like to do?
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