x = 1;
if(x = 10) {x = 1;}
else {x = x + 1;}
alert (x);
The result is always 1, instead of 1,2,3...
The result is always |
||||
|
|
|
Replace
with
Because From the MDN about if...else :
|
|||
|
|
|
if condition should be checked like below
Thanks |
|||
|
|