您好,登錄后才能下訂單哦!
今天小編給大家分享一下JavaScript 簡寫技巧有哪些的相關知識點,內容詳細,邏輯清晰,相信大部分人都還太了解這方面的知識,所以分享這篇文章給大家參考一下,希望大家閱讀完這篇文章后有所收獲,下面我們一起來了解一下吧。
普通寫法:
我們通常使用Array
中的concat()
方法合并兩個數組。用concat()
方法來合并兩個或多個數組,不會更改現有的數組,而是返回一個新的數組。請
看一個簡單的例子:
let apples = ['????', '????']; let fruits = ['????', '????', '????'].concat(apples); console.log( fruits ); //=> ["????", "????", "????", "????", "????"]
簡寫寫法:
我們可以通過使用ES6擴展運算符(...
)來減少代碼,如下所示:
let apples = ['????', '????']; let fruits = ['????', '????', '????', ...apples]; // <-- here console.log( fruits ); //=> ["????", "????", "????", "????", "????"]
普通寫法: 假設我們想將apples
數組中的所有項添加到Fruits
數組的開頭,而不是像上一個示例中那樣放在末尾。我們可以使用Array.prototype.unshift()
來做到這一點:
let apples = ['????', '????']; let fruits = ['????', '????', '????']; // Add all items from apples onto fruits at start Array.prototype.unshift.apply(fruits, apples) console.log( fruits ); //=> ["????", "????", "????", "????", "????"]
簡寫寫法:
我們依然可以使用ES6擴展運算符(...
)縮短這段長代碼,如下所示:
let apples = ['????', '????']; let fruits = [...apples, '????', '????', '????']; // <-- here console.log( fruits ); //=> ["????", "????", "????", "????", "????"]
普通寫法:
我們可以使用Array
中的slice()
方法輕松克隆數組,如下所示:
let fruits = ['????', '????', '????', '????']; let cloneFruits = fruits.slice(); console.log( cloneFruits ); //=> ["????", "????", "????", "????"]
簡寫寫法:
我們可以使用ES6擴展運算符(...
)像這樣克隆一個數組:
let fruits = ['????', '????', '????', '????']; let cloneFruits = [...fruits]; // <-- here console.log( cloneFruits ); //=> ["????", "????", "????", "????"]
普通寫法:
在處理數組時,我們有時需要將數組“解包”成一堆變量,如下所示:
let apples = ['????', '????']; let redApple = apples[0]; let greenApple = apples[1]; console.log( redApple ); //=> ???? console.log( greenApple ); //=> ????
簡寫寫法:
我們可以通過解構賦值用一行代碼實現相同的結果:
let apples = ['????', '????']; let [redApple, greenApple] = apples; // <-- here console.log( redApple ); //=> ???? console.log( greenApple ); //=> ????
普通寫法:
通常,當我們必須向字符串添加表達式時,我們會這樣做:
// Display name in between two strings let name = 'Palash'; console.log('Hello, ' + name + '!'); //=> Hello, Palash! // Add & Subtract two numbers let num1 = 20; let num2 = 10; console.log('Sum = ' + (num1 + num2) + ' and Subtract = ' + (num1 - num2)); //=> Sum = 30 and Subtract = 10
簡寫寫法:
通過模板字面量,我們可以使用反引號(``),這樣我們就可以將表達式包裝在
${…}`中,然后嵌入到字符串,如下所示:
// Display name in between two strings let name = 'Palash'; console.log(`Hello, ${name}!`); // <-- No need to use + var + anymore //=> Hello, Palash! // Add two numbers let num1 = 20; let num2 = 10; console.log(`Sum = ${num1 + num2} and Subtract = ${num1 - num2}`); //=> Sum = 30 and Subtract = 10
普通寫法:
我們可以使用for
循環像這樣循環遍歷一個數組:
let fruits = ['????', '????', '????', '????']; // Loop through each fruit for (let index = 0; index < fruits.length; index++) { console.log( fruits[index] ); // <-- get the fruit at current index } //=> ???? //=> ???? //=> ???? //=> ????
簡寫寫法:
我們可以使用for...of
語句實現相同的結果,而代碼要少得多,如下所示:
let fruits = ['????', '????', '????', '????']; // Using for...of statement for (let fruit of fruits) { console.log( fruit ); } //=> ???? //=> ???? //=> ???? //=> ????
普通寫法:
要遍歷數組,我們還可以使用Array
中的forEach()
方法。但是需要寫很多代碼,雖然比最常見的for
循環要少,但仍然比for...of
語句多一點:
let fruits = ['????', '????', '????', '????']; // Using forEach method fruits.forEach(function(fruit){ console.log( fruit ); }); //=> ???? //=> ???? //=> ???? //=> ????
簡寫寫法:
但是使用箭頭函數表達式,允許我們用一行編寫完整的循環代碼,如下所示:
let fruits = ['????', '????', '????', '????']; fruits.forEach(fruit => console.log( fruit )); // <-- Magic ? //=> ???? //=> ???? //=> ???? //=> ????
普通寫法:
要通過其中一個屬性從對象數組中查找對象的話,我們通常使用for
循環:
let inventory = [ {name: 'Bananas', quantity: 5}, {name: 'Apples', quantity: 10}, {name: 'Grapes', quantity: 2} ]; // Get the object with the name `Apples` inside the array function getApples(arr, value) { for (let index = 0; index < arr.length; index++) { // Check the value of this object property `name` is same as 'Apples' if (arr[index].name === 'Apples') { //=> ???? // A match was found, return this object return arr[index]; } } } let result = getApples(inventory); console.log( result ) //=> { name: "Apples", quantity: 10 }
簡寫寫法:
上面我們寫了這么多代碼來實現這個邏輯。但是使用Array
中的find()
方法和箭頭函數=>
,允許我們像這樣一行搞定:
// Get the object with the name `Apples` inside the array function getApples(arr, value) { return arr.find(obj => obj.name === 'Apples'); // <-- here } let result = getApples(inventory); console.log( result ) //=> { name: "Apples", quantity: 10 }
普通寫法:
parseInt()
函數用于解析字符串并返回整數:
let num = parseInt("10") console.log( num ) //=> 10 console.log( typeof num ) //=> "number"
簡寫寫法:
我們可以通過在字符串前添加+
前綴來實現相同的結果,如下所示:
let num = +"10"; console.log( num ) //=> 10 console.log( typeof num ) //=> "number" console.log( +"10" === 10 ) //=> true
普通寫法:
如果我們必須根據另一個值來設置一個值不是falsy值,一般會使用if-else
語句,就像這樣:
function getUserRole(role) { let userRole; // If role is not falsy value // set `userRole` as passed `role` value if (role) { userRole = role; } else { // else set the `userRole` as USER userRole = 'USER'; } return userRole; } console.log( getUserRole() ) //=> "USER" console.log( getUserRole('ADMIN') ) //=> "ADMIN"
簡寫寫法:
但是使用短路求值(||
),我們可以用一行代碼執行此操作,如下所示:
function getUserRole(role) { return role || 'USER'; // <-- here } console.log( getUserRole() ) //=> "USER" console.log( getUserRole('ADMIN') ) //=> "ADMIN"
箭頭函數:
如果你不需要this
上下文,則在使用箭頭函數時代碼還可以更短:
let fruits = ['????', '????', '????', '????']; fruits.forEach(console.log);
在數組中查找對象:
你可以使用對象解構和箭頭函數使代碼更精簡:
// Get the object with the name `Apples` inside the array const getApples = array => array.find(({ name }) => name === "Apples"); let result = getApples(inventory); console.log(result); //=> { name: "Apples", quantity: 10 }
短路求值替代方案:
const getUserRole1 = (role = "USER") => role; const getUserRole2 = role => role ?? "USER"; const getUserRole3 = role => role ? role : "USER";
以上就是“JavaScript 簡寫技巧有哪些”這篇文章的所有內容,感謝各位的閱讀!相信大家閱讀完這篇文章都有很大的收獲,小編每天都會為大家更新不同的知識,如果還想學習更多的知識,請關注億速云行業資訊頻道。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。