1. 程式人生 > >ES6的幾個實用技巧,你了解嗎?

ES6的幾個實用技巧,你了解嗎?

副本 func https 實用技巧 for count 語句 key 交換

本文給大家分享了es6的幾個實用技巧,非常不錯,具有參考借鑒價值,感興趣的朋友一起學習吧

技術分享圖片

Hack #1 交換元素

利用 數組解構來實現值的互換

let a = ‘world‘, b = ‘hello‘
[a, b] = [b, a]
console.log(a) // -> hello
console.log(b) // -> world

Hack #2 調試

我們經常使用 console.log()來進行調試,試試 console.table()也無妨。

const a = 5, b = 6, c = 7
console.log({ a, b, c });
console.table({a, b, c, m: {name: ‘xixi‘, age: 27}});

Hack #3 單條語句

ES6時代,操作數組的語句將會更加的緊湊

// 尋找數組中的最大值
const max = (arr) => Math.max(...arr);
max([123, 321, 32]) // outputs: 321
// 計算數組的總和
const sum = (arr) => arr.reduce((a, b) => (a + b), 0)
//歡迎加入前端全棧開發交流圈一起學習交流:864305860
sum([1, 2, 3, 4]) // output: 10

Hack #4 數組拼接

展開運算符可以取代 concat的地位了

const one = [‘a‘, ‘b‘, ‘c‘]
const two = [‘d‘, ‘e‘, ‘f‘]
const three = [‘g‘, ‘h‘, ‘i‘]
const result = [...one, ...two, ...three]

Hack #5 制作副本

我們可以很容易的實現數組和對象的 淺拷貝

const obj = { ...oldObj }
const arr = [ ...oldArr ]

Hack #6 命名參數

解構使得函數聲明和函數的調用更加可讀

// 我們嘗嘗使用的寫法
const getStuffNotBad = (id, force, verbose) => {
 ...do stuff
}//歡迎加入前端全棧開發交流圈一起吹水聊天學習交流:864305860
// 當我們調用函數時, 明天再看,尼瑪 150是啥,true是啥
getStuffNotBad(150, true, true)
// 看完本文你啥都可以忘記, 希望夠記住下面的就可以了
const getStuffAwesome = ({id, name, force, verbose}) => {
 ...do stuff
}//歡迎加入前端全棧開發交流圈一起吹水聊天學習交流:864305860
// 完美
getStuffAwesome({ id: 150, force: true, verbose: true })

Hack #7 Async/Await結合數組解構

數組解構非常贊!結合 Promise.all和 解構和 await會使代碼變得更加的簡潔

const [user, account] = await Promise.all([
 fetch(‘/user‘),
 fetch(‘/account‘)
])//歡迎加入前端全棧開發交流圈一起吹水聊天學習交流:864305860

結語

感謝您的觀看,如有不足之處,歡迎批評指正。

ES6的幾個實用技巧,你了解嗎?