From ECMAScript Language Specification
11.3 Postfix Expressions
Syntax
PostfixExpression :
- LeftHandSideExpression
- LeftHandSideExpression [no LineTerminator here] ++
- LeftHandSideExpression [no LineTerminator here] --
11.3.1 Postfix Increment Operator
The production PostfixExpression : LeftHandSideExpression [no LineTerminator here] ++ is evaluated as follows:
- Evaluate LeftHandSideExpression.
- Call GetValue(Result(1)).
- Call ToNumber(Result(2)).
- Add the value 1 to Result(3), using the same rules as for the + operator (section 11.6.3).
- Call PutValue(Result(1), Result(4)).
- Return Result(3).
This is pseudo javascript code of how postInc worksin javascript code:
function postInc(a) {
var x = parseInt(a,10);
+a; // Converts a to a number, Section 11.4.6 Unary + Operator
a = x + 1;
return x;
}
Edit: As mikesamuel said: it's not parseInt. Updated to reflect that.
