您好,登錄后才能下訂單哦!
這篇文章主要講解了“JavaScript的簡寫技巧有哪些”,文中的講解內容簡單清晰,易于學習與理解,下面請大家跟著小編的思路慢慢深入,一起來研究和學習“JavaScript的簡寫技巧有哪些”吧!
當想寫if...else
語句時,使用三元操作符來代替。
const x = 20; let answer; if (x > 10) { answer = 'is greater'; } else { answer = 'is lesser'; }
簡寫:
const answer = x > 10 ? 'is greater' : 'is lesser';
也可以嵌套 if 語句:
const big = x > 10 ? " greater 10" : x
當給一個變量分配另一個值時,想確定源始值不是 null, undefined 或空值。可以寫撰寫一個多重條件的 if 語句。
if (variable1 !== null || variable1 !== undefined || variable1 !== '') { let variable2 = variable1; }
或者可以使用短路求值方法:
const variable2 = variable1 || 'new';
let x; let y; let z = 3;
簡寫方法:
let x, y, z=3;
if (likeJavaScript === true)
簡寫:
if (likeJavaScript)
只有likeJavaScript
是真值時,二者語句才相等
如果判斷值不是真值,則可以這樣:
let a; if ( a !== true ) { // do something... }
簡寫:
let a; if ( !a ) { // do something... }
for (let i = 0; i < allImgs.length; i++)
簡寫:
for (let index in allImgs)
也可以使用Array.forEach
:
function logArrayElements(element, index, array) { console.log("a[" + index + "] = " + element); } [2, 5, 9].forEach(logArrayElements); // logs: // a[0] = 2 // a[1] = 5 // a[2] = 9
給一個變量分配的值是通過判斷其值是否為 null 或undefined ,則可以:
let dbHost; if (process.env.DB_HOST) { dbHost = process.env.DB_HOST; } else { dbHost = 'localhost'; }
簡寫:
const dbHost = process.env.DB_HOST || 'localhost';
當需要寫數字帶有很多零時(如10000000),可以采用指數(1e7)來代替這個數字:for (let i = 0; i < 10000; i++) {}
簡寫:
for (let i = 0; i < 1e7; i++) {} // 下面都是返回true 1e0 === 1; 1e1 === 10; 1e2 === 100; 1e3 === 1000; 1e4 === 10000; 1e5 === 100000;
如果屬性名與 key 名相同,則可以采用 ES6 的方法:
const obj = { x:x, y:y };
簡寫:
const obj = { x, y };
傳統函數編寫方法很容易讓人理解和編寫,但是當嵌套在另一個函數中,則這些優勢就蕩然無存。
function sayHello(name) { console.log('Hello', name); } setTimeout(function() { console.log('Loaded') }, 2000); list.forEach(function(item) { console.log(item); });
簡寫:
sayHello = name => console.log('Hello', name); setTimeout(() => console.log('Loaded'), 2000); list.forEach(item => console.log(item));
經常使用return
語句來返回函數最終結果,一個單獨語句的箭頭函數能隱式返回其值(函數必須省略{}為了省略return關鍵字)
為返回多行語句(例如對象字面表達式),則需要使用()包圍函數體。
function calcCircumference(diameter) { return Math.PI * diameter } var func = function func() { return { foo: 1 }; };
簡寫:
calcCircumference = diameter => ( Math.PI * diameter; ) var func = () => ({ foo: 1 });
為了給函數中參數傳遞默認值,通常使用 if 語句來編寫,但是使用 ES6 定義默認值,則會很簡潔:
function volume(l, w, h) { if (w === undefined) w = 3; if (h === undefined) h = 4; return l * w * h; }
簡寫:
volume = (l, w = 3, h = 4 ) => (l * w * h); volume(2) //output: 24
傳統的 JavaScript 語言,輸出模板通常是這樣寫的。
const welcome = 'You have logged in as ' + first + ' ' + last + '.' const db = 'http://' + host + ':' + port + '/' + database;
ES6 可以使用反引號
和${}
簡寫:
const welcome = `You have logged in as ${first} ${last}`; const db = `http://${host}:${port}/${database}`;
在 web 框架中,經常需要從組件和 API 之間來回傳遞數組或對象字面形式的數據,然后需要解構它
const observable = require('mobx/observable'); const action = require('mobx/action'); const runInAction = require('mobx/runInAction'); const store = this.props.store; const form = this.props.form; const loading = this.props.loading; const errors = this.props.errors; const entity = this.props.entity;
簡寫:
import { observable, action, runInAction } from 'mobx'; const { store, form, loading, errors, entity } = this.props;
也可以分配變量名:
const { store, form, loading, errors, entity:contact } = this.props; //最后一個變量名為contact
需要輸出多行字符串,需要使用+
來拼接:
const lorem = 'Lorem ipsum dolor sit amet, consectetur\n\t' + 'adipisicing elit, sed do eiusmod tempor incididunt\n\t' + 'ut labore et dolore magna aliqua. Ut enim ad minim\n\t' + 'veniam, quis nostrud exercitation ullamco laboris\n\t' + 'nisi ut aliquip ex ea commodo consequat. Duis aute\n\t' + 'irure dolor in reprehenderit in voluptate velit esse.\n\t'
使用反引號,則可以達到簡寫作用:
const lorem = `Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse.`
擴展運算符有幾種用例讓 JavaScript 代碼更加有效使用,可以用來代替某個數組函數。
// joining arrays const odd = [1, 3, 5]; const nums = [2 ,4 , 6].concat(odd); // cloning arrays const arr = [1, 2, 3, 4]; const arr2 = arr.slice()
簡寫:
// joining arrays const odd = [1, 3, 5 ]; const nums = [2 ,4 , 6, ...odd]; console.log(nums); // [ 2, 4, 6, 1, 3, 5 ] // cloning arrays const arr = [1, 2, 3, 4]; const arr2 = [...arr];
不像concat()
函數,可以使用擴展運算符來在一個數組中任意處插入另一個數組。
const odd = [1, 3, 5 ]; const nums = [2, ...odd, 4 , 6];
也可以使用擴展運算符解構:
const { a, b, ...z } = { a: 1, b: 2, c: 3, d: 4 }; console.log(a) // 1 console.log(b) // 2 console.log(z) // { c: 3, d: 4 }
JavaScript 中如果沒有向函數參數傳遞值,則參數為undefined。為了增強參數賦值,可以使用 if 語句來拋出異常,或使用強制參數簡寫方法。
function foo(bar) { if(bar === undefined) { throw new Error('Missing parameter!'); } return bar; }
簡寫:
mandatory = () => { throw new Error('Missing parameter!'); } foo = (bar = mandatory()) => { return bar; }
想從數組中查找某個值,則需要循環。在 ES6 中,find()
函數能實現同樣效果。
const pets = [ { type: 'Dog', name: 'Max'}, { type: 'Cat', name: 'Karl'}, { type: 'Dog', name: 'Tommy'}, ] function findDog(name) { for(let i = 0; i<pets.length; ++i) { if(pets[i].type === 'Dog' && pets[i].name === name) { return pets[i]; } } }
簡寫:
pet = pets.find(pet => pet.type ==='Dog' && pet.name === 'Tommy'); console.log(pet); // { type: 'Dog', name: 'Tommy' }
考慮一個驗證函數
function validate(values) { if(!values.first) return false; if(!values.last) return false; return true; } console.log(validate({first:'Bruce',last:'Wayne'})); // true
假設當需要不同域和規則來驗證,能否編寫一個通用函數在運行時確認?
// 對象驗證規則 const schema = { first: { required:true }, last: { required:true } } // 通用驗證函數 const validate = (schema, values) => { for(field in schema) { if(schema[field].required) { if(!values[field]) { return false; } } } return true; } console.log(validate(schema, {first:'Bruce'})); // false console.log(validate(schema, {first:'Bruce',last:'Wayne'})); // true
現在可以有適用于各種情況的驗證函數,不需要為了每個而編寫自定義驗證函數了
有一個有效用例用于雙重非運算操作符。可以用來代替Math.floor()
,其優勢在于運行更快。
Math.floor(4.9) === 4 //true
簡寫:
~~4.9 === 4 //true
感謝各位的閱讀,以上就是“JavaScript的簡寫技巧有哪些”的內容了,經過本文的學習后,相信大家對JavaScript的簡寫技巧有哪些這一問題有了更深刻的體會,具體使用情況還需要大家實踐驗證。這里是億速云,小編將為大家推送更多相關知識點的文章,歡迎關注!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。