Skip to content

Instantly share code, notes, and snippets.

@valueof
Created September 18, 2012 17:25
Show Gist options
  • Save valueof/3744450 to your computer and use it in GitHub Desktop.
Save valueof/3744450 to your computer and use it in GitHub Desktop.
0++

SpiderMonkey:

> 0++;
SyntaxError: invalid increment operand

V8:

> 0++
ReferenceError: Invalid left-hand side expression in postfix operation
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment