show/hide this revision's text 2 Corrected example

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:

  1. Evaluate LeftHandSideExpression.
  2. Call GetValue(Result(1)).
  3. Call ToNumber(Result(2)).
  4. Add the value 1 to Result(3), using the same rules as for the + operator (section 11.6.3).
  5. Call PutValue(Result(1), Result(4)).
  6. 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.

show/hide this revision's text 1

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:

  1. Evaluate LeftHandSideExpression.
  2. Call GetValue(Result(1)).
  3. Call ToNumber(Result(2)).
  4. Add the value 1 to Result(3), using the same rules as for the + operator (section 11.6.3).
  5. Call PutValue(Result(1), Result(4)).
  6. Return Result(3).


This is how postInc works in javascript code:

function postInc(a) {
  var x = parseInt(a,10);
  a = x + 1;
  return x;
}