! 對返回值的真假取反
console.log(!function() {
return;
}()); // true undefined屬於false,
console.log(!function() {
return "a";
}()); // false 字符串a屬於真
+、- 是對返回值進行數學運算
console.log(+function() {
return 5.1;
}()); // 5.1
console.log(-function() {
return 5.1;
}()); // -5.1
~ 對返回值進行按位取反(全部正整數的按位取反是其自己+1的負數,全部負整數的按位取反是其自己+1的絕對值,零的按位取反是 -1)
console.log(~function() {
return 5;
}()); // -6
console.log(~function() {
return -5;
}()); // 4
console.log(~function() {
return 0;
}()); // -1
console.log(~function() {
return "5";
}()); // -6 按位取反也會對返回值進行強制轉換,將字符串5轉化爲數字5,而後再按位取反
; 是爲了防止代碼壓縮時,前面代碼沒寫 ; 形成報錯。