5分鐘掌握JavaScript小技巧
1. 刪除數組尾部元素
一個簡單的用來清空或則刪除數組尾部元素的簡單方法就是改變數組的length屬性值。
const arr = [11, 22, 33, 44, 55, 66];
// truncanting
arr.length = 3;
console.log(arr); //= [11, 22, 33]
// clearing
arr.length = 0;
console.log(arr); //= []
console.log(arr[2]); //= undefined
2.使用對象解構來模擬命名參數
如果你需要將一系列可選項作為參數傳入函數,那麽你也許傾向於使用了一個對象(Object)來定義配置(Config)。
doSomething({ foo: ‘Hello‘, bar: ‘Hey!‘, baz: 42 });
function doSomething(config) {
const foo = config.foo !== undefined ? config.foo : ‘Hi‘;
const bar = config.bar !== undefined ? config.bar : ‘Yo!‘;
const baz = config.baz !== undefined ? config.baz : 13;
// ...
}
這是一個陳舊、但是很有效的方法,它模擬了JavaScript中的命名參數。不過呢,在doSomething中處理config的方式略顯繁瑣。在ES2015中,你可以直接使用對象解構。
function doSomething({ foo = ‘Hi‘, bar = ‘Yo!‘, baz = 13 }) {
// ...
}
如果你想讓這個參數是可選的,也很簡單。
function doSomething({ foo = ‘Hi‘, bar = ‘Yo!‘, baz = 13 } = {}) {
// ...
}
3. 使用對象解構來處理數組
可以使用對象解構的語法來獲取數組的元素:
const csvFileLine = ‘1997,John Doe,US,[email protected],New York‘;
const { 2: country, 4: state } = csvFileLine.split(‘,‘);
4. 在switch語句中用範圍值
可以使用下面的技巧來寫滿足範圍值的switch語句:
function getWaterState(tempInCelsius) {
let state;
switch (true) {
case (tempInCelsius = 0):
state = ‘Solid‘;
break;
case (tempInCelsius 0 tempInCelsius 100):
state = ‘Liquid‘;
break;
default:
state = ‘Gas‘;
}
return state;
}
5. await多個async函數
在使用async/await的時候,可以使用Promise.all來await多個async函數。
await Promise.all([anAsyncCall(), thisIsAlsoAsync(), oneMore()])
6. 創建一個純(pure)對象
你可以創建一個100%的純對象,他不從Object中繼承任何屬性或則方法(比如,constructor,toString()等等)。
const pureObject = Object.create(null);
console.log(pureObject); //= {}
console.log(pureObject.constructor); //= undefined
console.log(pureObject.toString); //= undefined
console.log(pureObject.hasOwnProperty); //= undefined
7. 格式化JSON代碼
JSON.stringify不止可以將一個對象字符化,還可以格式化輸出JSON對象。
const obj = {
foo: { bar: [11, 22, 33, 44], baz: { bing: true, boom: ‘Hello‘ } }
};
// The third parameter is the number of spaces used to
// beautify the JSON output.
JSON.stringify(obj, null, 4);
// ={
// = foo: {
// = bar: [
// = 11,
// = 22,
// = 33,
// = 44
// = ],
// = baz: {
// = bing: true,
// = boom: Hello
// = }
// = }
// =}
8. 從數組中移除重復元素
ES2015中,有了集合的語法。通過使用集合語法和Spread操作,可以很容易將重復的元素移除:
const removeDuplicateItems = arr = [...new Set(arr)];
removeDuplicateItems([42, ‘foo‘, 42, ‘foo‘, true, true]);
//= [42, foo, true]
9. 平鋪多維數組
使用Spread操作,可以很容易去平鋪嵌套多維數組:
const arr = [11, [22, 33], [44, 55], 66];
const flatArr = [].concat(...arr); //= [11, 22, 33, 44, 55, 66]
可惜,上面的方法僅僅適用於二維數組。不過,通過遞歸,我們可以平鋪任意維度的嵌套數組。
unction flattenArray(arr) {
const flattened = [].concat(...arr);
return flattened.some(item = Array.isArray(item)) ?
flattenArray(flattened) : flattened;
}
const arr = [11, [22, 33], [44, [55, 66, [77, [88]], 99]]];
const flatArr = flattenArray(arr);
//= [11, 22, 33, 44, 55, 66, 77, 88, 99]
就這些啦!我希望這些小技巧可以幫你寫出更加漂亮的JS代碼!如果還不夠,那麽不妨用Fundebug做你的輔助!
精選評論
·Ethan B Martin: 這個switch的寫法很巧妙,不過不推薦。請不要鼓勵開發者用這種方式去寫JS代碼。我們曾經有一個工程師這麽寫,後來在代碼review的時候,造成了很大的閱讀苦難。好在我們及時將其重構為更加容易讀懂的代碼。不妨對比一下用swtich和if的區別:
·function getWaterState1(tempInCelsius) {
·let state;
·
·switch (true) {
·case (tempInCelsius = 0):
·state = ‘Solid‘;
·break;
·case (tempInCelsius 100):
·state = ‘Liquid‘;
·break;
·default:
·state = ‘Gas‘;
·}
·return state;
·}
·function getWaterState2(tempInCelsius) {
·if (tempInCelsius = 0) {
·return ‘Solid‘;
·}
·if (tempInCelsius 100) {
·return ‘Liquid‘;
·}
·return ‘Gas‘;
}
第二種寫法有幾點優勢:
A) 代碼量更少,更加易讀;B) 你不需要聲明一個局部變量,讀者不會一直要去追蹤你如何對這個變量做了更改;C)switch(true)真的會讓人莫名其妙。
·Flo Sloot: 很棒的文章!不過不推薦第六招,除非你一定要使用。因為它的執行效率很慢,而且占用空間更大。因為V8並沒有對空對象做優化。
?
5分鐘掌握JavaScript小技巧