您好,登錄后才能下訂單哦!
JavaScript簡(jiǎn)寫(xiě)優(yōu)化技術(shù)有哪些,針對(duì)這個(gè)問(wèn)題,這篇文章詳細(xì)介紹了相對(duì)應(yīng)的分析和解答,希望可以幫助更多想解決這個(gè)問(wèn)題的小伙伴找到更簡(jiǎn)單易行的方法。
開(kāi)發(fā)者的生活總是在學(xué)習(xí)新的東西,跟上變化不應(yīng)該比現(xiàn)在更難,我的動(dòng)機(jī)是介紹所有JavaScript的最佳實(shí)踐,比如簡(jiǎn)寫(xiě)功能,作為一個(gè)前端開(kāi)發(fā)者,我們必須知道,讓我們的生活在2021年變得更輕松。
你可能做了很長(zhǎng)時(shí)間的JavaScript開(kāi)發(fā),但有時(shí)你可能沒(méi)有更新最新的特性,這些特性可以解決你的問(wèn)題,而不需要做或編寫(xiě)一些額外的代碼。這些技術(shù)可以幫助您編寫(xiě)干凈和優(yōu)化的JavaScript代碼。此外,這些主題可以幫助你為2021年的JavaScript面試做準(zhǔn)備。
1.如果有多個(gè)條件
我們可以在數(shù)組中存儲(chǔ)多個(gè)值,并且可以使用數(shù)組 include 方法。
//Longhand if (x === 'abc' || x === 'def' || x === 'ghi' || x ==='jkl') { //logic } //Shorthand if (['abc', 'def', 'ghi', 'jkl'].includes(x)) { //logic }
2.如果為真…否則簡(jiǎn)寫(xiě)
這對(duì)于我們有 if-else 條件,里面不包含更大的邏輯時(shí),是一個(gè)較大的捷徑。我們可以簡(jiǎn)單的使用三元運(yùn)算符來(lái)實(shí)現(xiàn)這個(gè)簡(jiǎn)寫(xiě)。
// Longhand let test: boolean; if (x > 100) { test = true; } else { test = false; } // Shorthand let test = (x > 10) ? true : false; //or we can use directly let test = x > 10; console.log(test);
當(dāng)我們有嵌套條件時(shí),我們可以采用這種方式。
let x = 300, test2 = (x > 100) ? 'greater 100' : (x < 50) ? 'less 50' : 'between 50 and 100'; console.log(test2); // "greater than 100"
3.聲明變量
當(dāng)我們要聲明兩個(gè)具有共同值或共同類(lèi)型的變量時(shí),可以使用此簡(jiǎn)寫(xiě)形式。
//Longhand let test1; let test2 = 1; //Shorthand let test1, test2 = 1;
4.Null, Undefined,空檢查
當(dāng)我們創(chuàng)建新的變量時(shí),有時(shí)我們想檢查我們引用的變量的值是否為空或undefined。JavaScript確實(shí)有一個(gè)非常好的簡(jiǎn)寫(xiě)工具來(lái)實(shí)現(xiàn)這些功能。
// Longhand if (test1 !== null || test1 !== undefined || test1 !== '') { let test2 = test1; } // Shorthand let test2 = test1 || '';
5.null值檢查和分配默認(rèn)值
let test1 = null, test2 = test1 || ''; console.log("null check", test2); // output will be ""
6.undefined值檢查和分配默認(rèn)值
let test1 = undefined, test2 = test1 || ''; console.log("undefined check", test2); // output will be ""
正常值檢查
let test1 = 'test', test2 = test1 || ''; console.log(test2); // output: 'test'
7.將值分配給多個(gè)變量
當(dāng)我們處理多個(gè)變量并希望將不同的值分配給不同的變量時(shí),此簡(jiǎn)寫(xiě)技術(shù)非常有用。
//Longhand let test1, test2, test3; test1 = 1; test2 = 2; test3 = 3; //Shorthand let [test1, test2, test3] = [1, 2, 3];
8.賦值運(yùn)算符簡(jiǎn)寫(xiě)
我們?cè)诰幊讨刑幚砗芏嗨阈g(shù)運(yùn)算符,這是將運(yùn)算符分配給JavaScript變量的有用技術(shù)之一。
// Longhand test1 = test1 + 1; test2 = test2 - 1; test3 = test3 * 20; // Shorthand test1++; test2--; test3 *= 20;
9.如果存在簡(jiǎn)寫(xiě)
這是我們大家都在使用的常用簡(jiǎn)寫(xiě)之一,但仍然值得一提。
// Longhand if (test1 === true) or if (test1 !== "") or if (test1 !== null) // Shorthand //it will check empty string,null and undefined too if (test1)
注意:如果test1有任何值,它將在if循環(huán)后進(jìn)入邏輯,該運(yùn)算符主要用于 null 或 undefined 的檢查。
10.多個(gè)條件的AND(&&)運(yùn)算符
如果僅在變量為 true 的情況下才調(diào)用函數(shù),則可以使用 && 運(yùn)算符。
//Longhand if (test1) { callMethod(); } //Shorthand test1 && callMethod();
11.foreach循環(huán)簡(jiǎn)寫(xiě)
這是迭代的常用簡(jiǎn)寫(xiě)技術(shù)之一。
// Longhand for (var i = 0; i < testData.length; i++) // Shorthand for (let i in testData) or for (let i of testData)
每個(gè)變量的數(shù)組
function testData(element, index, array) { console.log('test[' + index + '] = ' + element); } [11, 24, 32].forEach(testData); // logs: test[0] = 11, test[1] = 24, test[2] = 32
12.return中比較
我們也可以在return語(yǔ)句中使用比較。它將避免我們的5行代碼,并將它們減少到1行。
// Longhand let test; function checkReturn() { if (!(test === undefined)) { return test; } else { return callMe('test'); } } var data = checkReturn(); console.log(data); //output test function callMe(val) { console.log(val); } // Shorthand function checkReturn() { return test || callMe('test'); }
13.箭頭函數(shù)
//Longhand function add(a, b) { return a + b; } //Shorthand const add = (a, b) => a + b;
更多示例。
function callMe(name) { console.log('Hello', name); } callMe = name => console.log('Hello', name);
14.短函數(shù)調(diào)用
我們可以使用三元運(yùn)算符來(lái)實(shí)現(xiàn)這些功能。
// Longhand function test1() { console.log('test1'); }; function test2() { console.log('test2'); }; var test3 = 1; if (test3 == 1) { test1(); } else { test2(); } // Shorthand (test3 === 1? test1:test2)();
15. Switch簡(jiǎn)寫(xiě)
我們可以將條件保存在鍵值對(duì)象中,并可以根據(jù)條件使用。
// Longhand switch (data) { case 1: test1(); break; case 2: test2(); break; case 3: test(); break; // And so on... } // Shorthand var data = { 1: test1, 2: test2, 3: test }; data[something] && data[something]();
16.隱式返回簡(jiǎn)寫(xiě)
使用箭頭函數(shù),我們可以直接返回值,而不必編寫(xiě)return語(yǔ)句。
//longhand function calculate(diameter) { return Math.PI * diameter } //shorthand calculate = diameter => ( Math.PI * diameter; )
17.小數(shù)基數(shù)指數(shù)
// Longhand for (var i = 0; i < 10000; i++) { ... } // Shorthand for (var i = 0; i < 1e4; i++) {
18.默認(rèn)參數(shù)值
//Longhand function add(test1, test2) { if (test1 === undefined) test1 = 1; if (test2 === undefined) test2 = 2; return test1 + test2; } //shorthand add = (test1 = 1, test2 = 2) => (test1 + test2); add() //output: 3
19.擴(kuò)展運(yùn)算符簡(jiǎn)寫(xiě)
//longhand // joining arrays using concat const data = [1, 2, 3]; const test = [4 ,5 , 6].concat(data); //shorthand // joining arrays const data = [1, 2, 3]; const test = [4 ,5 , 6, ...data]; console.log(test); // [ 4, 5, 6, 1, 2, 3]
對(duì)于克隆,我們也可以使用擴(kuò)展運(yùn)算符。
//longhand // cloning arrays const test1 = [1, 2, 3]; const test2 = test1.slice() //shorthand // cloning arrays const test1 = [1, 2, 3]; const test2 = [...test1];
20.模板文字
如果您厭倦了在單個(gè)字符串中使用 + 來(lái)連接多個(gè)變量,那么這種簡(jiǎn)寫(xiě)可以消除您的頭痛。
//longhand const welcome = 'Hi ' + test1 + ' ' + test2 + '.' //shorthand const welcome = `Hi ${test1} ${test2}`;
21.多行字符串簡(jiǎn)寫(xiě)
當(dāng)我們?cè)诖a中處理多行字符串時(shí),可以使用以下功能:
//longhand const data = 'abc abc abc abc abc abc\n\t' + 'test test,test test test test\n\t' //shorthand const data = `abc abc abc abc abc abc test test,test test test test`
22.對(duì)象屬性分配
let test1 = 'a'; let test2 = 'b'; //Longhand let obj = {test1: test1, test2: test2}; //Shorthand let obj = {test1, test2};
23.將字符串轉(zhuǎn)換成數(shù)字
//Longhand let test1 = parseInt('123'); let test2 = parseFloat('12.3'); //Shorthand let test1 = +'123'; let test2 = +'12.3';
24.用解構(gòu)簡(jiǎn)寫(xiě)
//longhand const test1 = this.data.test1; const test2 = this.data.test2; const test2 = this.data.test3; //shorthand const { test1, test2, test3 } = this.data;
25.用Array.find簡(jiǎn)寫(xiě)
當(dāng)我們確實(shí)有一個(gè)對(duì)象數(shù)組并且我們想要根據(jù)對(duì)象屬性查找特定對(duì)象時(shí),find方法確實(shí)很有用。
const data = [ { type: 'test1', name: 'abc' }, { type: 'test2', name: 'cde' }, { type: 'test1', name: 'fgh' }, ] function findtest1(name) { for (let i = 0; i < data.length; ++i) { if (data[i].type === 'test1' && data[i].name === name) { return data[i]; } } } //Shorthand filteredData = data.find(data => data.type === 'test1' && data.name === 'fgh'); console.log(filteredData); // { type: 'test1', name: 'fgh' }
26.查找條件簡(jiǎn)寫(xiě)
如果我們有代碼來(lái)檢查類(lèi)型,根據(jù)類(lèi)型需要調(diào)用不同的方法,我們可以選擇使用多個(gè)else ifs或者switch,但是如果我們有比這更好的簡(jiǎn)寫(xiě)方法呢?
// Longhand if (type === 'test1') { test1(); } else if (type === 'test2') { test2(); } else if (type === 'test3') { test3(); } else if (type === 'test4') { test4(); } else { throw new Error('Invalid value ' + type); } // Shorthand var types = { test1: test1, test2: test2, test3: test3, test4: test4 }; var func = types[type]; (!func) && throw new Error('Invalid value ' + type); func();
27.按位索引簡(jiǎn)寫(xiě)
當(dāng)我們遍歷數(shù)組以查找特定值時(shí),我們確實(shí)使用 indexOf() 方法,如果找到更好的方法該怎么辦?讓我們看看這個(gè)例子。
//longhand if(arr.indexOf(item) > -1) { // item found } if(arr.indexOf(item) === -1) { // item not found } //shorthand if(~arr.indexOf(item)) { // item found } if(!~arr.indexOf(item)) { // item not found }
按位(?)運(yùn)算符將返回除-1以外的任何值的真實(shí)值。否定它就像做 ~~ 一樣簡(jiǎn)單。另外,我們也可以使用 include() 函數(shù):
if (arr.includes(item)) { // true if the item found }
28.Object.entries()
此函數(shù)有助于將對(duì)象轉(zhuǎn)換為對(duì)象數(shù)組。
const data = { test1: 'abc', test2: 'cde', test3: 'efg' }; const arr = Object.entries(data); console.log(arr); /** Output: [ [ 'test1', 'abc' ], [ 'test2', 'cde' ], [ 'test3', 'efg' ] ] **/
29.Object.values()
這也是ES8中引入的一項(xiàng)新功能,該功能執(zhí)行與 Object.entries() 類(lèi)似的功能,但沒(méi)有關(guān)鍵部分:
const data = { test1: 'abc', test2: 'cde' }; const arr = Object.values(data); console.log(arr); /** Output: [ 'abc', 'cde'] **/
30.雙按位簡(jiǎn)寫(xiě)
雙重NOT按位運(yùn)算符方法僅適用于32位整數(shù))
// Longhand Math.floor(1.9) === 1 // true // Shorthand ~~1.9 === 1 // true
31.重復(fù)一個(gè)字符串多次
要一次又一次地重復(fù)相同的字符,我們可以使用for循環(huán)并將它們添加到同一循環(huán)中,但是如果我們有一個(gè)簡(jiǎn)寫(xiě)方法呢?
//longhand let test = ''; for(let i = 0; i < 5; i ++) { test += 'test '; } console.log(str); // test test test test test //shorthand 'test '.repeat(5);
32.在數(shù)組中查找最大值和最小值
const arr = [1, 2, 3]; Math.max(…arr); // 3 Math.min(…arr); // 1
33.從字符串中獲取字符
let str = 'abc'; //Longhand str.charAt(2); // c //Shorthand Note: If we know the index of the array then we can directly use index insted of character.If we are not sure about index it can throw undefined str[2]; // c
34.數(shù)學(xué)指數(shù)冪函數(shù)的簡(jiǎn)寫(xiě)
//longhand Math.pow(2,3); // 8 //shorthand 2**3 // 8
關(guān)于JavaScript簡(jiǎn)寫(xiě)優(yōu)化技術(shù)有哪些問(wèn)題的解答就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,如果你還有很多疑惑沒(méi)有解開(kāi),可以關(guān)注億速云行業(yè)資訊頻道了解更多相關(guān)知識(shí)。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。