We often see examples like this:
var a;
var b=!!a;
a defaults to undefined. !a is true, !!a is false, so the value of b is false, not undefined or other values, mainly to facilitate subsequent judgments.
!! Generally used to force the following expression to Boolean type data (boolean), that is, it can only be true or false;
Because JavaScript is a weakly typed language (variables are not fixed data type) so sometimes it is necessary to cast it to the corresponding type, similar to:
a=parseInt(“1234″)
a=”1234″-0 //Convert to number
b=1234 ”” //Convert to string
c=someObject. toString() //Convert the object to a string
The first and fourth types are explicit conversions, and the second and third types are implicit conversions
Boolean conversion , the JavaScript convention rules are
false, undefined, null, 0, "" is false
true, 1, "somestring", [Object] is true
for null and undefined, etc. For other implicitly converted values, using the ! operator will produce a true result, so the purpose of using two exclamation marks is to convert these values into "equivalent" Boolean values;
Let's take a look again:
var foo;
alert(!foo);// In the undefined case, an exclamation point returns true;
alert(!goo);//In the null case, an exclamation mark also returns true;
var o={flag:true};
var test =!!o.flag;//Equivalent to var test=o.flag||false;
alert(test);
This example demonstrates when undiffed and null , using one exclamation point will return true, using two exclamation points will return false, so the role of two exclamation points is that if the value of the variable is explicitly set (not null/undified/0/"", etc.), the result It will be returned based on the actual value of the variable. If it is not set, the result will be false.