Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I want to know why after running the third line of code the result of a is 5?

a = 10;
b = 5;
a =+ b;
share|improve this question
the correct syntax is a+=b; a=+b; is not correct. it is simply assigning b value to a. – Anil Apr 15 '12 at 9:42

1 Answer

Awkward formatting:

a =+ b;

is equivalent to:

a = +b;

And +b is just a fancy way of casting b to number, like here:

var str = "123";
var num = +str;

You probably wanted:

a += b;

being equivalent to:

a = a + b;
share|improve this answer
...while a += b is a shortcut for a = a + b, which is probably what you want – fritzfromlondon Apr 15 '12 at 9:22
1  
@fritzfromlondon: Thanks for pointing that out, I allowed myself to add your comment to an answer to better stand out – Tomasz Nurkiewicz Apr 15 '12 at 9:30
1  
The + in a = +b; is called the unary + operator: es5.github.com/#x11.4.6 – Felix Kling Apr 15 '12 at 10:31

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.