作者:Haseeb Anwar
譯者:前端小智
來源:medium
有夢想,有乾貨,微信搜尋 【大遷世界】 關注這個在凌晨還在刷碗的刷碗智。
本文 GitHub https://github.com/qq449245884/xiaozhi 已收錄,有一線大廠面試完整考點、資料以及我的系列文章。
JavaScript 有很多很酷的特性,大多數初學者和中級開發人員都不知道。今天分享一些,我經常在專案中使用一些技巧。
1. 有條件地向物件新增屬性
我們可以使用展開運算子號(...
)來有條件地向 JS 物件快速新增屬性。
const condition = true;
const person = {
id: 1,
name: 'John Doe',
...(condition && { age: 16 }),
};
如果每個運算元的值都為 true
,則 &&
操作符返回最後一個求值表示式。因此返回一個物件{age: 16}
,然後將其擴充套件為person
物件的一部分。
如果 condition
為 false
,JavaScript 會做這樣的事情:
const person = {
id: 1,
name: '前端小智',
...(false),
};
// 展開 `false` 對物件沒有影響
console.log(person); // { id: 1, name: 'John Doe' }
2.檢查屬性是否存在物件中
可以使用 in
關鍵字來檢查 JavaScript 物件中是否存在某個屬性。
const person = { name: '前端小智', salary: 1000 };
console.log('salary' in person); // true
console.log('age' in person); // false
3.物件中的動態屬性名稱
使用動態鍵設定物件屬性很簡單。只需使用['key name']
來新增屬性:
const dynamic = 'flavour';
var item = {
name: '前端小智',
[dynamic]: '巧克力'
}
console.log(item); // { name: '前端小智', flavour: '巧克力' }
同樣的技巧也可用於使用動態鍵引用物件屬性:
const keyName = 'name';
console.log(item[keyName]); // returns '前端小智'
4. 使用動態鍵進行物件解構
我們知道在物件解構時,可以使用 :
來對解構的屬性進行重新命名。但,你是否知道鍵名是動態的時,也可以解構物件的屬性?
const person = { id: 1, name: '前端小智' };
const { name: personName } = person;
console.log(personName); // '前端小智'
現在,我們用動態鍵來解構屬性:
const templates = {
'hello': 'Hello there',
'bye': 'Good bye'
};
const templateName = 'bye';
const { [templateName]: template } = templates;
console.log(template); // Good bye
5. 空值合併 ??
操作符
當我們想檢查一個變數是否為 null
或 undefined
時,??
操作符很有用。當它的左側運算元為null
或 undefined
時,它返回右側的運算元,否則返回其左側的運算元。
const foo = null ?? 'Hello';
console.log(foo); // 'Hello'
const bar = 'Not null' ?? 'Hello';
console.log(bar); // 'Not null'
const baz = 0 ?? 'Hello';
console.log(baz); // 0
在第三個示例中,返回 0
,因為即使 0
在 JS 中被認為是假的,但它不是null
的或undefined
的。你可能認為我們可以用||運算元但這兩者之間是有區別的
你可能認為我們可以在這裡使用 ||
操作符,但這兩者之間是有區別的。
const cannotBeZero = 0 || 5;
console.log(cannotBeZero); // 5
const canBeZero = 0 ?? 5;
console.log(canBeZero); // 0
6.可選鏈 ?.
我們是不是經常遇到這樣的錯誤: TypeError: Cannot read property ‘foo’ of null
。這對每一個毅開發人員來說都是一個煩人的問題。引入可選鏈就是為了解決這個問題。一起來看看:
const book = { id:1, title: 'Title', author: null };
// 通常情況下,你會這樣做
console.log(book.author.age) // throws error
console.log(book.author && book.author.age); // null
// 使用可選鏈
console.log(book.author?.age); // undefined
// 或深度可選鏈
console.log(book.author?.address?.city); // undefined
還可以使用如下函式可選鏈:
const person = {
firstName: '前端',
lastName: '小智',
printName: function () {
return `${this.firstName} ${this.lastName}`;
},
};
console.log(person.printName()); // '前端 小智'
console.log(persone.doesNotExist?.()); // undefined
7. 使用 !!
操作符
!!
運算子可用於將表示式的結果快速轉換為布林值(true
或false
):
const greeting = 'Hello there!';
console.log(!!greeting) // true
const noGreeting = '';
console.log(!!noGreeting); // false
8. 字串和整數轉換
使用 +
操作符將字串快速轉換為數字:
const stringNumer = '123';
console.log(+stringNumer); //123
console.log(typeof +stringNumer); //'number'
要將數字快速轉換為字串,也可以使用 +
操作符,後面跟著一個空字串:
const myString = 25 + '';
console.log(myString); //'25'
console.log(typeof myString); //'string'
這些型別轉換非常方便,但它們的清晰度和程式碼可讀性較差。所以實際開發,需要慎重的選擇使用。
9. 檢查陣列中的假值
大家應該都用過陣列方法:filter
、some
、every
,這些方法可以配合 Boolean
方法來測試真假值。
const myArray = [null, false, 'Hello', undefined, 0];
// 過濾虛值
const filtered = myArray.filter(Boolean);
console.log(filtered); // ['Hello']
// 檢查至少一個值是否為真
const anyTruthy = myArray.some(Boolean);
console.log(anyTruthy); // true
// 檢查所有的值是否為真
const allTruthy = myArray.every(Boolean);
console.log(allTruthy); // false
下面是它的工作原理。我們知道這些陣列方法接受一個回撥函式,所以我們傳遞 Boolean
作為回撥函式。Boolean
函式本身接受一個引數,並根據引數的真實性返回 true
或 false
。所以:
myArray.filter(val => Boolean(val));
等價於:
myArray.filter(Boolean);
10. 扁平化陣列
在原型 Array 上有一個方法 flat
,可以從一個陣列的陣列中製作一個單一的陣列。
const myArray = [{ id: 1 }, [{ id: 2 }], [{ id: 3 }]];
const flattedArray = myArray.flat();
//[ { id: 1 }, { id: 2 }, { id: 3 } ]
你也可以定義一個深度級別,指定一個巢狀的陣列結構應該被扁平化的深度。例如:
const arr = [0, 1, 2, [[[3, 4]]]];
console.log(arr.flat(2)); // returns [0, 1, 2, [3,4]]
11.Object.entries
大多數開發人員使用 Object.keys
方法來迭代物件。 此方法僅返回物件鍵的陣列,而不返回值。 我們可以使用 Object.entries
來獲取鍵和值。
const person = {
name: '前端小智',
age: 20
};
Object.keys(person); // ['name', 'age']
Object.entries(data); // [['name', '前端小智'], ['age', 20]]
為了迭代一個物件,我們可以執行以下操作:
Object.keys(person).forEach((key) => {
console.log(`${key} is ${person[key]}`);
});
// 使用 entries 獲取鍵和值
Object.entries(person).forEach(([key, value]) => {
console.log(`${key} is ${value}`);
});
// name is 前端小智
// age is 20
上述兩種方法都返回相同的結果,但 Object.entries
獲取鍵值對更容易。
12.replaceAll 方法
在 JS 中,要將所有出現的字串替換為另一個字串,我們需要使用如下所示的正規表示式:
const str = 'Red-Green-Blue';
// 只規制第一次出現的
str.replace('-', ' '); // Red Green-Blue
// 使用 RegEx 替換所有匹配項
str.replace(/\-/g, ' '); // Red Green Blue
但是在 ES12 中,一個名為 replaceAll
的新方法被新增到 String.prototype
中,它用另一個字串值替換所有出現的字串。
str.replaceAll('-', ' '); // Red Green Blue
13.數字分隔符
可以使用下劃線作為數字分隔符,這樣可以方便地計算數字中0的個數。
// 難以閱讀
const billion = 1000000000;
// 易於閱讀
const readableBillion = 1000_000_000;
console.log(readableBillion) //1000000000
下劃線分隔符也可以用於BigInt數字,如下例所示
const trillion = 1000_000_000_000n;
console.log(trillion); // 1000000000000
14.document.designMode
與前端的JavaScript有關,設計模式讓你可以編輯頁面上的任何內容。只要開啟瀏覽器控制檯,輸入以下內容即可。
document.designMode = 'on';
15.邏輯賦值運算子
邏輯賦值運算子是由邏輯運算子&&
、||
、??
和賦值運算子=
組合而成。
const a = 1;
const b = 2;
a &&= b;
console.log(a); // 2
// 上面等價於
a && (a = b);
// 或者
if (a) {
a = b
}
檢查a
的值是否為真,如果為真,那麼更新a
的值。使用邏輯或 ||
操作符也可以做同樣的事情。
const a = null;
const b = 3;
a ||= b;
console.log(a); // 3
// 上面等價於
a || (a = b);
使用空值合併操作符 ??
:
const a = null;
const b = 3;
a ??= b;
console.log(a); // 3
// 上面等價於
if (a === null || a === undefined) {
a = b;
}
注意:??
操作符只檢查 null
或 undefined
的值。
~~ 完,我是刷碗智,點贊和在看是對我最大的支援,我會好好的刷碗的。
編輯中可能存在的bug沒法實時知道,事後為了解決這些bug,花了大量的時間進行log 除錯,這邊順便給大家推薦一個好用的BUG監控工具 Fundebug。
原文:
https://betterprogramming.pub...
https://betterprogramming.pub...
交流
文章每週持續更新,可以微信搜尋【大遷世界 】第一時間閱讀,回覆【福利】有多份前端視訊等著你,本文 GitHub https://github.com/qq449245884/xiaozhi 已經收錄,歡迎Star。