vote up 12 vote down star
1

I've just walked into this code:

val.enabled = !!enable

and have no idea what does "!!" do... I googled JavaScript operators but haven't found this one.

flag

7 Answers

vote up 12 vote down check

It converts the suffix to a Boolean value.

link|flag
Logical or is a double-pipe, not a double-bang – Peter Bailey Sep 10 at 17:31
@Peter Baily: it's a logical NOT twice. – NickFitz Sep 10 at 17:46
@NickFitz, I know that. But Paul's answer has been edited - it used to say that !! was logical or. – Peter Bailey Sep 10 at 17:57
Yeah, I was too quick for my own good, and fixed it about 10 seconds later. – Paul McMillan Sep 10 at 18:00
vote up 35 vote down

It's a horribly obscure way to do a type conversion.

! is NOT. So !true is false and !false is true. !0 is true and !1 is false.

So you're converting a value to a bool, then inverting it, then inverting it again.

//Maximum Obscurity:
val.enabled = !!userId;

//Partial Obscurity:
val.enabled = (userId != 0) ? true : false;

//And finally, much easier to understand:
val.enabled = userId != 0;
link|flag
!!false = false. !!true = true – roosteronacid Sep 10 at 17:38
4  
(userId == 0) ? false : true; hurts my brain the least. – Andy Gaskell Sep 10 at 17:43
Yeah, I agree with Andy; using the ternary operator seems to be the clearest way. If it works (I'm not sure it does) then var.enabled = (bool) userId; seems pretty clear to me also. – Imagist Sep 10 at 19:02
How about using === and !=== instead of ==/!= – Luis Abreu Sep 14 at 12:10
vote up 15 vote down

!! converts the value to the right of it to its equivalent boolean value. (Think poor man's way of "type-casting"). Its intent is usually to convey to the reader that the code does not care what value is in the variable, but what it's "truth" value is.

link|flag
Or in the case of a boolean value on the right, it does nothing. – Daniel A. White Sep 10 at 17:28
1  
@Daniel: ! still flips the value to the right. In the case of a boolean the right-most ! negates the value, while the left-most ! negates it once again. Net effect is that there is no change, but most engines will generate op codes for the double negation. – Crescent Fresh Sep 10 at 17:34
vote up 7 vote down

It's a double not operation. The first ! converts the value to boolean and inverts its logical value. The second ! inverts the logical value back.

link|flag
vote up 6 vote down

! is "boolean not", which essentially typecasts the value of "enable" to its boolean opposite. The second ! flips this value. So, !!enable means "not not enable," giving you the value of enable as a boolean.

link|flag
vote up 1 vote down

!!foo applies the unary not operator twice and is used to cast to boolean type similar to the use of unary plus +foo to cast to number and concatenating an empty string ''+foo to cast to string.

Instead of these hacks, you can also use the constructor functions corresponding to the primitive types (without using new) to explicitly cast values, ie

Boolean(foo) === !!foo
Number(foo)  === +foo
String(foo)  === ''+foo
link|flag
vote up 0 vote down

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.

val.enabled = !(!enable);
link|flag

Your Answer

Get an OpenID
or

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