這篇文章將為大家詳細(xì)講解有關(guān)9個(gè)極其強(qiáng)大的JavaScript技巧分別是怎樣的,文章內(nèi)容質(zhì)量較高,因此小編分享給大家做個(gè)參考,希望大家閱讀完這篇文章后對相關(guān)知識有一定的了解。
專注于為中小企業(yè)提供成都網(wǎng)站制作、做網(wǎng)站服務(wù),電腦端+手機(jī)端+微信端的三站合一,更高效的管理,為中小企業(yè)漯河免費(fèi)做網(wǎng)站提供優(yōu)質(zhì)的服務(wù)。我們立足成都,凝聚了一批互聯(lián)網(wǎng)行業(yè)人才,有力地推動(dòng)了成百上千家企業(yè)的穩(wěn)健成長,幫助中小企業(yè)通過網(wǎng)站建設(shè)實(shí)現(xiàn)規(guī)模擴(kuò)充和轉(zhuǎn)變。
所謂 hacker 方法,就是一種不斷改進(jìn)和迭代的構(gòu)建方法。有著 hacker 精神的程序員相信事物總有改進(jìn)的余地,沒有什么是完美的存在。每一段代碼都有進(jìn)一步優(yōu)化的空間,每一個(gè)操作都有更便捷的技巧。
下面列舉一些非常強(qiáng)大的 JavaScript hack 技巧。
1. Replace All
我們知道 string.Replace() 函數(shù)只會替換第一個(gè)項(xiàng)目。
你可以在這個(gè)正則表達(dá)式的末尾添加 /g 來替換所有內(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 對象和 Spread 運(yùn)算符,創(chuàng)建一個(gè)剔除重復(fù)值的新數(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)運(yùn)算符即可。
var converted_number = 5 + ""; console.log(converted_number); // 5 console.log(typeof converted_number); // string
4. 將字符串轉(zhuǎn)換為數(shù)字
用 + 運(yùn)算符即可。
請注意這里的用法,因?yàn)樗贿m用于“字符串?dāng)?shù)字”。
the_string = "123"; console.log(+the_string); // 123 the_string = "hello"; console.log(+the_string); // NaN
5. 隨機(jī)排列數(shù)組中的元素
每天我都在隨機(jī)排來排去……
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ù)組
只需使用 Spread 運(yùn)算符。
var entries = [1, [2, 5], [6, 7], 9]; var flat_entries = [].concat(...entries); // [1, 2, 5, 6, 7, 9]
7. 短路條件
舉個(gè)例子:
if (available) { addToCart(); }
只需使用變量和函數(shù)就能縮短它:
available && addToCart()
8. 動(dòng)態(tài)屬性名稱
我一直以為我必須先聲明一個(gè)對象,然后才能分配一個(gè)動(dòng)態(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)于9個(gè)極其強(qiáng)大的JavaScript技巧分別是怎樣的就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,可以學(xué)到更多知識。如果覺得文章不錯(cuò),可以把它分享出去讓更多的人看到。