Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.
x = 1;    
if(x = 10) {x = 1;} 
else {x = x + 1;}
alert (x);

The result is always 1, instead of 1,2,3...

share|improve this question

4 Answers

up vote 9 down vote accepted

Replace

if(x = 10) {x = 1;} 

with

if(x == 10) {x = 1;} 

Because x=10 returns 10, which in a test evaluates as true, and thus the code {x = 1;} is executed.

From the MDN about if...else :

Any value that is not undefined, null, 0, NaN, or the empty string (""), and any object, including a Boolean object whose value is false, evaluates to true when passed to a conditional statement

share|improve this answer
Thanks, it works. :)) – Alegro Dec 5 '12 at 8:51
x = 1;    
if(x 

==

10) {x = 1;} 
    else {x = x + 1;}
    alert (x);
share|improve this answer

if condition should be checked like below

x=1;
if(x == 10)
{x = 1;}
else
{x = x+ 1;}
 alert(x)

Thanks

share|improve this answer
var x = 1;
x = (x == 10)? 1:x+=1;
alert(x);
share|improve this answer

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.