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?

link|improve this question

43% accept rate
I've never seen that before. Can you show us some code where this operator appears... – romaintaz Apr 24 '09 at 8:16
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
It really doesn't; I mean, as long as you're only using the ternary operator once, any decent programmer should know what's going on. – Hexagon Theory Apr 24 '09 at 21:43
6  
The legendary Cast-to-bool operator lives forever! :) – Kos Dec 2 '10 at 20:21
2  
Remember it by "bang, bang you're boolean" – Gus Feb 15 at 18:35
feedback

16 Answers

up vote 81 down vote accepted

Converts it to boolean!

!oObject  //Inverted boolean
!!oObject //Non inverted boolean so true boolean representation
link|improve this answer
4  
This makes perfect sense... – Hexagon Theory Apr 24 '09 at 8:20
8  
To elaborate, it converts a non-boolean to a boolean, then inverts it. I'm not so hot on javascript, but that sounds like casting to a boolean to me.... – Darren Clark Apr 24 '09 at 8:36
4  
@Darren Clark - Wrong way round. – Stevo3000 Apr 24 '09 at 9:03
3  
An easy way to describe it is: Boolean(5) === !!5; Same casting, fewer characters. – dfltr Apr 24 '09 at 18:27
18  
Also, !! is not an operator. It's just the ! operator twice. – August Lilleaas Apr 7 '10 at 2:19
show 2 more comments
feedback

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 boolean, 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|improve this answer
4  
!!false = false. !!true = true – roosteronacid Sep 10 '09 at 17:38
34  
(userId == 0) ? false : true; hurts my brain the least. – Andy Gaskell Sep 10 '09 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 '09 at 19:02
11  
Horribly obscure .... beautifly concise to my eyes .... – James Westgate Sep 23 '10 at 21:26
8  
Is the "much easier to understand" variant really much easier to understand here? The check against 0 is not an actual check against 0, but a check against the somewhat weird list of values Javascript considers equal to 0. userId ? true : false makes more clear that there is conversion going on and handles the case where userId's value might have been explicitly set to undefined – Ben Oct 13 '10 at 16:26
show 7 more comments
feedback

!! 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|improve this answer
2  
Or in the case of a boolean value on the right, it does nothing. – Daniel A. White Sep 10 '09 at 17:28
2  
@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 '09 at 17:34
feedback

It converts the suffix to a Boolean value.

link|improve this answer
Logical or is a double-pipe, not a double-bang – Peter Bailey Sep 10 '09 at 17:31
1  
@Peter Baily: it's a logical NOT twice. – NickFitz Sep 10 '09 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 '09 at 17:57
5  
The gang-bang operator. – Kirby Todd Mar 23 '11 at 12:12
feedback

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|improve this answer
feedback

It's just the logical NOT operator, twice - it's used to convert something to boolean, e.g.:

true === !!10

false === !!0
link|improve this answer
Why on earth would you do that? Use the ! operator to convert to boolean then use === to compare type? Just accept you have no type safety and do val > 0 or something. – Darren Clark Apr 24 '09 at 8:41
3  
@Darren: He's not comparing types; he's telling you what the results are, by writing assertions in his answer. – Lightness Races in Orbit Nov 9 '11 at 10:34
feedback

! 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|improve this answer
feedback

!!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|improve this answer
But then you can run into issues with instanceof. new Boolean(1) instanceof Object -> true !!1 instanceof Object -> false – Seamus Oct 7 '10 at 12:53
3  
no, you can't: notice that the constructor functions are called without new - as explicitly mentioned in my answer – Christoph Oct 8 '10 at 9:46
feedback

It seems that the !! operator results in a double negation.

var foo = "Hello World!";

!foo // Result: false
!!foo // Result: true
link|improve this answer
feedback

I think that would just be !(!a), yes?

That is a logical NOT against another logical NOT.

As in:

true = !false == !!true
link|improve this answer
feedback

It simulates the behavior of the Boolean() casting function. The first NOT returns a Boolean value no matter what operand it is given. The second NOT negates that Boolean value and so gives the true Boolean value of a variable. The end result is the same as using the Boolean() function on a value.

link|improve this answer
I like this answer the best. It's the clearest explanation of what's really going on. – Almo May 23 at 14:59
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.

val.enabled = !(!enable);
link|improve this answer
feedback

Double boolean negation. Often used to check if value is not undefined.

link|improve this answer
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 !!.

link|improve this answer
feedback

This is a really handy way to check for undefined, "undefined", null, "null", ""

if (!!var1 && !!var2 && !!var3 && !!var4 ){
   //... some code here
}
link|improve this answer
feedback

!!expr converts any truthy expression into the boolean true (and false otherwise). It makes more sense when used on non-boolean types. Consider these examples, specially the 3rd example and onward and notice the use of === operator:

        !!false === false 
         !!true === true  

            !!0 === false
            !!1 === true  
           !!-1 === true  // -1 is truthy 
           !!"" === false // empty string is falsy
     !!"foobar" === true  // non-empty string is truthy
      !!"false" === true  // ...even if it encapsulates a falsy value
         !!null === false // null is falsy
!!window.foobar === false // undefined is falsy
           !![] === true  // an (empty) array is truthy
           !!{} === true  // an (empty) object is truthy
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.