I have a variable on javascrit, initialized at 0. What I'd like to do is this :

  • if the value is 0, change it to 1;
  • if the value is 1, change it to 0;

and I'll avoid conditional statement (like if/else) to check what the value is.

I think I just do it with some matematic operation; I thought to a NOT operation, but I don't know how to do that operation without

link|improve this question

Why do you want to avoid if/else? Any reason? – Joachim Sauer Nov 2 '11 at 10:09
There aren't a specific reason. Just I think there is a way more quick to change a value from 0->1 or 1->0, without first check and than set the value... – markzzz Nov 2 '11 at 10:10
By "quick" do you mean performance of the code? If so, you're looking at the wrong end: your micro-optimizing and you're probably doing it at the wrong side of the code. Make sure that you measure before you try to optimize. – Joachim Sauer Nov 2 '11 at 10:11
possible duplicate stackoverflow.com/questions/1779286/… – tipycalFlow Nov 2 '11 at 10:12
@Joachim Sauer : you solution looks brillant. You don't think apply a SUM (1-x) is faster than check a variable, than edit the value? – markzzz Nov 2 '11 at 10:14
show 2 more comments
feedback

3 Answers

up vote 6 down vote accepted
x = 1-x;
link|improve this answer
feedback

you can use xor operator:

x = x XOR 1;
link|improve this answer
feedback

If the variable is let's say i

i = 1 - i, should do the trick

if i = 0, 1 - 0 = 1 than i = 1

if i = 1, 1 - 1 = 0 than i = 0

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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