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.
|
1
|
I've just walked into this code:
and have no idea what does "!!" do... I googled JavaScript operators but haven't found this one.
|
||
|
|
|
|
It converts the suffix to a Boolean value. |
||||||||
|
|
|
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.
|
||||||||||
|
|
|
|
||||||
|
|
|
It's a double |
||
|
|
|
|
! is "boolean not", which essentially typecasts the value of "enable" to its boolean opposite. The second ! flips this value. So, |
||
|
|
|
|
Instead of these hacks, you can also use the constructor functions corresponding to the primitive types (without using
|
||
|
|
|
|
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.
|
||
|
|