2020-08-25
好程序員web前端培訓分享九個JavaScript小技巧1. 全部替換
我們知道 string.replace() 函數僅替換diyi次出現的情況。
你可以通過在正則表達式的末尾添加 /g 來替換所有出現的內容。
var example = "potato potato";
console.log(example.replace(/pot/, "tom"));
// "tomato potato"
console.log(example.replace(/pot/g, "tom"));
// "tomato tomato"
2. 提取唯一值
通過使用 Set 對象和展開運算符,我們可以創建一個具有唯一值的新數組。
var entries = [1, 2, 2, 3, 4, 5, 6, 6, 7, 7, 8, 4, 2, 1]
var unique_entries = [...new Set(entries)];
console.log(unique_entries);
// [1, 2, 3, 4, 5, 6, 7, 8]
3. 將數字轉換為字符串
我們只需要使用帶空引號的串聯運算符。
var converted_number = 5 + "";
console.log(converted_number);
// 5
console.log(typeof converted_number);
4. 將字符串轉換為數字
我們需要的只是 + 運算符。
請注意它僅適用于“字符串數字”。
the_string = "123";
console.log(+the_string);
// 123
the_string = "hello";
console.log(+the_string);
// NaN
5. 隨機排列數組中的元素
我每天都在這樣做
var my_list = [1, 2, 3, 4, 5, 6, 7, 8, 9];
console.log(my_list.sort(function() {
return Math.random() - 0.5
}));
// [4, 8, 2, 9, 1, 3, 6, 5, 7]
6. 展平多維數組
只需使用展開運算符。
var entries = [1, [2, 5], [6, 7], 9];
var flat_entries = [].concat(...entries);
// [1, 2, 5, 6, 7, 9]
7. 縮短條件語句
讓我們來看這個例子:
if (available) { addToCart(); }
通過簡單地使用變量和函數來縮短它:
available && addToCart()
8. 動態屬性名
我一直以為必須先聲明一個對象,然后才能分配動態屬性。
const dynamic = 'flavour';
var item = {
name: 'Coke',
[dynamic]: 'Cherry'
}
console.log(item);
// { name: "Coke", flavour: "Cherry" }
9. 使用 length 調整/清空數組
我們基本上覆蓋了數組的 length 。
如果我們要調整數組的大小:
var entries = [1, 2, 3, 4, 5, 6, 7];
console.log(entries.length);
// 7
entries.length = 4;
console.log(entries.length);
// 4
console.log(entries);
// [1, 2, 3, 4]
如果我們要清空數組:
var entries = [1, 2, 3, 4, 5, 6, 7];
console.log(entries.length);
// 7
entries.length = 0;
console.log(entries.length);
// 0
console.log(entries);
// []
開班時間:2021-04-12(深圳)
開班盛況開班時間:2021-05-17(北京)
開班盛況開班時間:2021-03-22(杭州)
開班盛況開班時間:2021-04-26(北京)
開班盛況開班時間:2021-05-10(北京)
開班盛況開班時間:2021-02-22(北京)
開班盛況開班時間:2021-07-12(北京)
預約報名開班時間:2020-09-21(上海)
開班盛況開班時間:2021-07-12(北京)
預約報名開班時間:2019-07-22(北京)
開班盛況Copyright 2011-2023 北京千鋒互聯科技有限公司 .All Right 京ICP備12003911號-5 京公網安備 11010802035720號