How does JavaScript treat the ++ operator? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-17T23:20:36Z http://stackoverflow.com/feeds/question/386044 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/386044/how-does-javascript-treat-the-operator 1 How does JavaScript treat the ++ operator? Claudiu 2008-12-22T11:36:02Z 2008-12-22T19:56:00Z <p>JavaScript does funky automatic conversions with objects:</p> <pre><code>var o = {toString: function() {return "40"; }}; print(o + o); print((o+1)+o); print((o*2) + (+o)); </code></pre> <p>will print:</p> <pre><code>4040 40140 120 </code></pre> <p>This is because +, if any of the arguments are objects/strings, will try to convert all the arguments to strings then concatenate them. If all arguments are numbers, it adds them together. * and unary + convert objects to numbers using toString (as well as valueOf, not shown here).</p> <p>What does JavaScript do for the ++ operator?</p> http://stackoverflow.com/questions/386044/how-does-javascript-treat-the-operator/386048#386048 3 Answer by Claudiu for How does JavaScript treat the ++ operator? Claudiu 2008-12-22T11:38:13Z 2008-12-22T11:38:13Z <p>The following code illustrates this well:</p> <pre><code>var a = {toString: function() {return "40"; }}; nl(typeof a); nl(typeof +a); nl(typeof a); nl(typeof (a++)); nl(a); nl(typeof a); </code></pre> <p>The output is:</p> <pre><code>object number object number 41 number </code></pre> <p>Unary plus converts the object to a number and doesn't modify it. a++ first converts the object to a number, <strong>then returns that number</strong>, and then increments the number, storing the value in a.</p> <p>This is opposed to another possible solution, where a++ would first return the object, and then do the conversion to a number and incrementation.</p> http://stackoverflow.com/questions/386044/how-does-javascript-treat-the-operator/386275#386275 1 Answer by olliej for How does JavaScript treat the ++ operator? olliej 2008-12-22T13:46:12Z 2008-12-22T13:46:12Z <p>The <code>++</code> operator does a "toNumber" conversion (basically a combination of type rules and the valueOf function). Basically for any resolve expression</p> <pre><code> resolveExpression++ </code></pre> <p>The steps taken by the JS engine are</p> <pre><code> &lt;temp&gt; = toNumber(resolveExpression); resolveExpression = &lt;temp&gt; + 1; &lt;result&gt; = &lt;temp&gt; </code></pre> <p>For non-atomic resolve expressions, eg. <code>base.resolve++</code> or <code>base["resolve"]++</code>, etc. <code>base</code> is resolved only once and then reused. In any sane case this is irrelevant, however it's important if the value being incremented is an object with a valueOf implementation that changes the base object.</p> <p>eg.</p> <pre><code>base = {}; base.value = {valueOf:function(){base = {}; return 5;}} base.value++; </code></pre> http://stackoverflow.com/questions/386044/how-does-javascript-treat-the-operator/386850#386850 4 Answer by some for How does JavaScript treat the ++ operator? some 2008-12-22T17:42:59Z 2008-12-22T19:56:00Z <p>From <a href="http://www.ecma-international.org/publications/files/ECMA-ST/Ecma-262.pdf" rel="nofollow">ECMAScript Language Specification</a></p> <blockquote> <h2>11.3 Postfix Expressions</h2> <p><strong>Syntax</strong></p> <p>PostfixExpression :</p> <ul> <li>LeftHandSideExpression</li> <li>LeftHandSideExpression [no LineTerminator here] ++</li> <li>LeftHandSideExpression [no LineTerminator here] --</li> </ul> <p><strong>11.3.1 Postfix Increment Operator</strong></p> <p>The production <em>PostfixExpression : LeftHandSideExpression [no LineTerminator here] ++</em> is evaluated as follows:</p> <ol> <li>Evaluate LeftHandSideExpression.</li> <li>Call GetValue(Result(1)).</li> <li>Call ToNumber(Result(2)).</li> <li>Add the value 1 to Result(3), using the same rules as for the + operator (section 11.6.3).</li> <li>Call PutValue(Result(1), Result(4)).</li> <li>Return Result(3).</li> </ol> </blockquote> <p><hr /></p> <p>This is pseudo javascript code of how postInc works:</p> <pre><code>function postInc(a) { var x = +a; // Converts a to a number, Section 11.4.6 Unary + Operator a = x + 1; return x; } </code></pre> <p>Edit: As <a href="http://stackoverflow.com/users/20394/">mikesamuel</a> said: it's not parseInt. Updated to reflect that.</p>