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?
| ||||
|
feedback
|
|
Converts it to boolean!
| |||||||||||||||||||||
feedback
|
|
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.
| |||||||||||||||||||
feedback
|
|
| |||||||||
feedback
|
|
It converts the suffix to a Boolean value. | |||||||||||||
feedback
|
|
It's a double | |||
|
feedback
|
|
It's just the logical NOT operator, twice - it's used to convert something to boolean, e.g.:
| |||||||
feedback
|
|
! is "boolean not", which essentially typecasts the value of "enable" to its boolean opposite. The second ! flips this value. So, | |||
|
feedback
|
|
Instead of these hacks, you can also use the constructor functions corresponding to the primitive types (without using
| |||||||
feedback
|
|
It seems that the
| ||||
|
feedback
|
|
I think that would just be !(!a), yes? That is a logical NOT against another logical NOT. As in:
| |||
|
feedback
|
|
It simulates the behavior of the | |||
feedback
|
|
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.
| |||
|
feedback
|
|
Double boolean negation. Often used to check if value is not undefined. | |||
|
feedback
|
|
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 !!. | |||
|
feedback
|
|
This is a really handy way to check for undefined, "undefined", null, "null", ""
| |||
|
feedback
|
|
| ||||
|
feedback
|
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