Why is there no logical xor in JavaScript?
| show 1 more comment |
|
Once, a long, long time ago, JavaScript did have its very own XOR operator: it was
JavaScript was very proud of its XOR operator, so proud that it strutted, chin held high and chest puffed out, back and forth along the sidewalk where its older friends C and Java were chatting over coffee and hazelnut biscotti. Look at me. said JavaScript proudly, and see what I can do with my powerful XOR! Both C and Java tried to ignore the younger language, but that only made JavaScript all the more bold. "Ha ha, old fools!* snorted young JavaScript. Your poor users and their carpal tunnel issues, stuck with decrepit old junk like yourselves! Bah! Now C and Java were tolerant to a point, but a couple of other, older languages soon wandered by and were much more offended by the rather shocking display JavaScript was putting on. Eventually, after exchanging a few winks and nods, Lisp stood up suddenly in front of JavaScript while Modula II crawled quietly behind him. Lisp poked out a long bony finger at the youth and shouted, What good is all your syntax now? At that, Lisp bent back a parenthesis and flung a dirty nil right at JavaScript's face, causing the young language to shrink back and trip helplessly over Modula II's crouched form. As he tumbled, pieces of JavaScript flew into the air out of his control. Right at that moment, the young vermin-like eBay darted out from a gap in the wall and sprang upon the (A little-known fact is that that incident was also where JavaScript picked up the |
|||||||||||||||||||
|
|
C does not have a logical XOR operator, and no language with C-based syntax does either. Mainly because it's not useful. Bitwise XOR is extremely useful, but in all my years of programming I have never needed a logical XOR. If you have two boolean variables you can mimic XOR with:
With two arbitrary variables you could use
That's pretty obscure though and would certainly deserve a comment. Indeed, you could even use the bitwise XOR operator at this point, though this would be far too clever for my taste:
|
||||
|
Javascript has a XOR operator : ^
It's the same as in C. I think it's standard, correct me if I'm wrong. |
|||||||||||
|
|
there is... sort of:
or easier to read:
why? dunno. because javascript developers thought it would be unnecessary as it can be expressed by other, already implemented, logical operators. you could as well just have gon with nand and thats it, you can impress every other possible logical operation from that. i personally think it has historical reasons that drive from c-based syntax languages, where to my knowledge xor is not present or at least exremely uncommon. |
|||
|
|
|
Check out: You can mimic it something like this:
|
|||||
|
|
There are no real logical operators in Javascript. A logical operator would only take true or false as arguments and would only return true or false. In Javascript
So the general idea is to evaluate the left argument first. The right argument gets only evaluated if it's necessary. And the last result is returned. This returned result can be anything. Objects, Numbers, Strings .. whatever! This makes it possible to write things like
or
But the truth value of this result can also be used to decide if a "real" logical operator would have returned true or false. This makes it possible to write things like
or
But a "logical" Anyways, what should happen if both results are truthy? You would expect something falsy. But there are no falsy results. So the operation shouldn't return anything. And finally, what should happen if both results are falsy? Both could be returned. But only one can be returned. Which one? The first one? Or the second one? My intuition tells me to return the first result but usually "logical" operators evaluate from left to right and return the last evaluated result. |
|||||||||||||
|
|
How about transforming the result int to a bool with double negation? Not so pretty, but really compact.
|
|||
|
|
|
Try this short and easy to understand one
This will work for any data type |
|||
|
|


&&and||are much more like flow control operators than logical operators. – Pointy Dec 27 '10 at 17:35