您好,登錄后才能下訂單哦!
小編給大家分享一下JavaScript中有哪些強大的運算符,希望大家閱讀完這篇文章之后都有所收獲,下面讓我們一起去探討吧!
如果你第一次遇到它,看到的是兩個問號,估計腦海里還有更多的問號(小朋友,你是否有很多問號~~~)
兩個問號??其美名曰空值合并操作符,如果第一個參數不是 null/undefined,將返回第一個參數,否則返回第二個參數。
console.log(1 ?? "www.shanzhzonglei.com"); // 1 console.log(false ?? "www.shanzhzonglei.com"); // false console.log(null ?? "www.shanzhzonglei.com"); // www.shanzhzonglei.com console.log(undefined ?? "www.shanzhzonglei.com"); // // www.shanzhzonglei.com
所以,只有當第一個參數是 null/undefined 的時候,才返回第二個參數。
注意,雖然 JS 中的未定義 undefined、空對象 null、數值 0、空數字 NaN、布爾 false,空字符串''都是假值,但??非空運算符只對 null/undefined 做處理。
它與邏輯或操作符(||)不同,邏輯或操作符會在左側操作數為假值時返回右側操作數。比如為假值('' 或 0)時。
console.log(1 || 2); // 1 console.log("" || 2); // 2
哦,現在還不止兩個問號,還多了一個等號,題目越來越難了么?
??=空賦值運算符,僅當值為 null 或 undefined 時,此賦值運算符才會賦值。
const student = { age: 20 }; student.age ??= 18; console.log(student.age); // 20 student.name ??= "shanguagua"; console.log(student.name); // 'shanguagua'
它和上面的??空值合并運算符是有聯系的:x ??= y等價于x ?? (x = y),只有當 x 為 null 或 undefined 時,x = y才會執行。
let x = null; x ??= 20; console.log(x); // 20 let y = 5; y ??= 10; console.log(y); // 5
可選鏈操作符?.允許讀取位于連接對象鏈深處的屬性的值,而不必明確驗證鏈中的每個引用是否有效。操作符會隱式檢查對象的屬性是否為 null 或 undefined,代碼更加優雅簡潔。
const obj = { name: "山呱呱", foo: { bar: { baz: 18, fun: () => {}, }, }, school: { students: [ { name: "shanguagua", }, ], }, say() { return "www.shanzhonglei.com"; }, }; console.log(obj?.foo?.bar?.baz); // 18 console.log(obj?.school?.students?.[0]["name"]); // shanguagua console.log(obj?.say?.()); // www.shanzhonglei.com
它也叫三目運算符。額,這個就很常用了。
對于條件表達式b ? x : y,先計算條件 b,然后進行判斷。如果 b 的值為 true,計算 x 的值,運算結果為 x 的值;否則,計算 y 的值,運算結果為 y 的值。
console.log(false ? 1 : 2); // 2 console.log(true ? 1 : 2); // 1
先來復習一下吧:
邏輯與(&&):當第一個操作數為 true 時,將不會判斷第二個操作數,因為無論第二個操作數為何,最后的運算結果一定是 true。
實際開發中,利用設個特性,可實現如下操作:
1、如果某個值為 true,則運行某個 function
function say() { console.log("www.shanzhonglei.com"); } let type = true; type && say(); // www.shanzhonglei.com
2、判斷某個值
// 如果age大于10并且小于20才會執行 if (age > 10 && age < 20) { console.log(age); }
邏輯或(||): 當第一個操作數為 false 時(也就是 js 的假值),將不會判斷第二個操作數,因為此時無論第二個操作數為何,最后的運算結果一定是 false。
實際開發中,利用設個特性,可實現如下操作:
1、給某個變量設置初始值
let student = { name: "shanguagua", }; console.log(student.age || "www.shanzhonglei.com"); // www.shanzhonglei.com
2、判斷某個值
// 如果age等于10或者等于20或者等于30都執行 if (age === 10 || age === 20 || age === 30) { console.log(age); }
位運算符是按位進行運算,&(與)、|(或),使用位運算符時會拋棄小數位,我們可以利用|0來給數字取整。也可以使用&1來判斷奇偶數。
實際開發中,利用設個特性,可實現如下操作:
1、取整
1.3 | (0 - // 打印出 1 1.9) | 0; // 打印出 -1
2、判斷奇偶數
let num = 5; !!(num & 1); // true !!(num % 2); // true
可以使用雙位操作符來替代正數的 Math.floor( ),替代負數的 Math.ceil( )。
雙否定位操作符的優勢在于它執行相同的操作運行速度更快,對正數來說~~運算結果與 Math.floor( ) 運算結果相同,而對于負數來說與 Math.ceil( ) 的運算結果相同。
Math.floor(5.2) === 5; // true ~~3.2 === 3; // true Math.ceil(-6.6) === -6; // true ~~-4.5 === -6; // true
!,可將變量轉換成 boolean 類型,null、undefined 和空字符串''取反都為 true,其余都為 false。一般來說會有好幾種用法,!,!!,!=,!==。
let cat = false; console.log(!cat); // true
判斷變量 a 不等于 null,undefined 和''才能執行的方法。
var a; if (a != null && typeof a != undefined && a != "") { //a有內容才執行的代碼 }
等價于:
if (!!a) { //a有內容才執行的代碼... }
一般來說都是用的全不等于!==,因為使用不等于!=的話,0 != ""返回的是 false,原因是 JS 中 0 和''轉化成布爾型都為 false,所以推薦還是使用全不等于!==。
let a = 0; let b = 0; let c = "0"; let d = ''; a != b //false a != c // false number和string的0 被判斷為相等 a != d // false 0和空字符串被判斷為相等 a !== b // false a !== c // true a !== d // true
看完了這篇文章,相信你對“JavaScript中有哪些強大的運算符”有了一定的了解,如果想了解更多相關知識,歡迎關注億速云行業資訊頻道,感謝各位的閱讀!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。