!!是逻辑"非非",即是在逻辑“非”的基础上再"非"一次。通过!或!!可以将很多类型转换成bool类型,再做其它判断。
应用场景:判断一个对象是否存在
假设有这样一个json对象:{ color: "#E3E3E3", "font-weight": "bold" },需要判断是否存在,用!!再好不过。
如果仅仅打印对象,无法判断是否存在:
var temp = { color: "#A60000", "font-weight": "bold" };
alert(temp);
如果对json对象实施!或!!,就可以判断该json对象是否存在:
var temp = { color: "#A60000", "font-weight": "bold" };
alert(!temp);
var temp = { color: "#A60000", "font-weight": "bold" };
alert(!!temp);
通过!或!!把各种类型转换成bool类型的惯例
□ 对null的"非"返回true
var temp = null;
alert(temp);
var temp = null;
alert(!temp);
结果:true
var temp = null;
alert(!!temp);
□ 对undefined的"非"返回true
var temp;
alert(temp);
var temp;
alert(!temp);
结果:true
var temp;
alert(!!temp);
结果:false
□ 对空字符串的"非"返回true
var temp="";
alert(temp);
var temp="";
alert(!temp);
var temp="";
alert(!!temp);
结果:false
□ 对非零整型的"非"返回false
var temp=1;
alert(temp);
var temp=1;
alert(!temp);
var temp=1;
alert(!!temp);
结果:true
□ 对0的"非"返回true
结果:0
var temp = 0;
alert(temp);
var temp = 0;
alert(!temp);
var temp = 0;
alert(!!temp);
□ 对字符串的"非"返回false
var temp="ab";
alert(temp);
var temp="ab";
alert(!temp);
var temp="ab";
alert(!!temp);
□ 对数组的"非"返回false
var temp=[1,2];
alert(temp);
结果:1,2
var temp=[1,2];
alert(!temp);
var temp=[1,2];
alert(!!temp);