I've seen code that seems to use an operator I don't recognize, in the form of two exclamation points, like so: !!. Can someone please tell me what this operator does?
|
|
||||
| show 1 more comment |
|
Converts it to boolean!
|
|||||||||||||||||||||
|
|
It's a horribly obscure way to do a type conversion.
So you're converting a value to a boolean, then inverting it, then inverting it again.
|
|||||||||||||||||||||
|
|
|
|||||||||||||||||||||
|
|
|
|||||||||
|
|
It converts the suffix to a Boolean value. |
|||||||||||||
|
|
It's just the logical NOT operator, twice - it's used to convert something to boolean, e.g.:
|
|||||||
|
|
It's a double |
|||
|
|
|
Instead of these hacks, you can also use the constructor functions corresponding to the primitive types (without using
|
|||
|
! is "boolean not", which essentially typecasts the value of "enable" to its boolean opposite. The second ! flips this value. So, |
|||
|
|
|
It simulates the behavior of the |
|||||
|
|
I think that would just be !(!a), yes? That is a logical NOT against another logical NOT. As in:
|
|||
|
|
|
It seems that the
|
||||
|
|
|
It's not a single operator, it's two. It's equivalent to the following and is a quick way to cast a value to boolean.
|
|||
|
|
|
I suspect this is a leftover from C++ where people override the ! operator but not the bool operator. So to get a negative(or positive) answer in that case you would first need to use the ! operator to get a boolean, but if you wanted to check the positive case would use !!. |
|||
|
|
|
Brew some tea:
In theory:
What we wish to determine in the comparison is the "truth" about the value of a reference, not the value of the reference itself. There is a use-case where we might want to know the truth about a value, even if we expect the value to be In practice: Consider a concise function which detects feature functionality (and in this case, platform compatibility) by way of dynamic typing (aka "duck typing"). We want to write a function that returns Here are the three approaches:
Each function accepts an argument for a But wait, there's more! Some of you probably noticed that in this specific example, one could simply check for a property using the slightly more performant means of checking if the object in question has a property. There are two ways to do this:
We digress... However rare these situations may be, there may exist a few scenarios where the most concise, most performant, and thus most preferred means of getting |
|||
|
|
|
This is a really handy way to check for undefined, "undefined", null, "null", ""
|
|||||||||||||||
|
|
!! is same as !!!! and same as !!!!!! and same as !!!!!!!!... :D |
|||
|
|




this.vertical = vertical !== undefined? !!vertical : this.vertical;I don't understand why those two exclamation points are at all necessary... – Hexagon Theory Apr 24 '09 at 8:17