1.!可将变量转换成boolean类型,null、undefined和空字符串取反都为true,其余都为false。
!null true !undefined true !'null' false !'' true
2.!!常常用来做类型判断,在第一步!(变量)之后再做逻辑取反运算