這篇文章給大家分享的是有關(guān)強大的JavaScript技巧有哪些的內(nèi)容。小編覺得挺實用的,因此分享給大家做個參考,一起跟隨小編過來看看吧。
專注于為中小企業(yè)提供成都網(wǎng)站制作、成都網(wǎng)站建設服務,電腦端+手機端+微信端的三站合一,更高效的管理,為中小企業(yè)固原免費做網(wǎng)站提供優(yōu)質(zhì)的服務。我們立足成都,凝聚了一批互聯(lián)網(wǎng)行業(yè)人才,有力地推動了上1000+企業(yè)的穩(wěn)健成長,幫助中小企業(yè)通過網(wǎng)站建設實現(xiàn)規(guī)模擴充和轉(zhuǎn)變。
1. 全部替換
我們知道 string.replace() 函數(shù)僅替換第一次出現(xiàn)的情況。
你可以通過在正則表達式的末尾添加 /g 來替換所有出現(xiàn)的內(nèi)容。
var example = "potato potato"; console.log(example.replace(/pot/, "tom")); // "tomato potato" console.log(example.replace(/pot/g, "tom")); // "tomato tomato"
2. 提取唯一值
通過使用 Set 對象和展開運算符,我們可以創(chuàng)建一個具有唯一值的新數(shù)組。
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. 將數(shù)字轉(zhuǎn)換為字符串
我們只需要使用帶空引號的串聯(lián)運算符。
var converted_number = 5 + ""; console.log(converted_number); // 5 console.log(typeof converted_number);
4. 將字符串轉(zhuǎn)換為數(shù)字
我們需要的只是 + 運算符。
請注意它僅適用于“字符串數(shù)字”。
the_string = "123"; console.log(+the_string); // 123 the_string = "hello"; console.log(+the_string); // NaN
5. 隨機排列數(shù)組中的元素
我每天都在這樣做
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. 展平多維數(shù)組
只需使用展開運算符。
var entries = [1, [2, 5], [6, 7], 9]; var flat_entries = [].concat(...entries); // [1, 2, 5, 6, 7, 9]
7. 縮短條件語句
讓我們來看這個例子:
if (available) { addToCart(); }
通過簡單地使用變量和函數(shù)來縮短它:
available && addToCart()
8. 動態(tài)屬性名
我一直以為必須先聲明一個對象,然后才能分配動態(tài)屬性。
const dynamic = 'flavour'; var item = { name: 'Coke', [dynamic]: 'Cherry' } console.log(item); // { name: "Coke", flavour: "Cherry" }
9. 使用 length 調(diào)整/清空數(shù)組
我們基本上覆蓋了數(shù)組的 length 。
如果我們要調(diào)整數(shù)組的大?。?/p>
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]
如果我們要清空數(shù)組:
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); // []
感謝各位的閱讀!關(guān)于“強大的JavaScript技巧有哪些”這篇文章就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,讓大家可以學到更多知識,如果覺得文章不錯,可以把它分享出去讓更多的人看到吧!