原文: 7 Hacks for ES6 Developers譯者:neal1991javascript
welcome to star my articles-translator , providing you advanced articles translation. Any suggestion, please issue or contact mejava
LICENSE: MITgit
關注原來的 JavaScript hacks,上面有一些新的好東西。2018 使用 JavaScript 寫代碼真的又變得有意思了!es6
使用數組結構來交換值github
let a = 'world', b = 'hello' [a, b] = [b, a] console.log(a) // -> hello console.log(b) // -> world // 是的,很神奇
再說一遍,數組結構真的很棒。經過和 async/await 以及 promise 結合能夠讓複雜的流程變得簡單。數組
const [user, account] = await Promise.all([ fetch('/user'), fetch('/account') ])
對於那些喜歡使用 console.logs 來調試的人來講,如今有一些特別酷的(而且我也據說過 console.table):promise
const a = 5, b = 6, c = 7 console.log({ a, b, c }) // 輸出優雅的對象: // { // a: 5, // b: 6, // c: 7 // }
對於數組操做,語法能夠很是緊湊async
// 尋找最大值 const max = (arr) => Math.max(...arr); max([123, 321, 32]) // outputs: 321 // 對數組求和 const sum = (arr) => arr.reduce((a, b) => (a + b), 0) sum([1, 2, 3, 4]) // output: 10
拓展操做符能夠用來代替 concat:函數
const one = ['a', 'b', 'c'] const two = ['d', 'e', 'f'] const three = ['g', 'h', 'i'] // 老方法 #1 const result = one.concat(two, three) // 老方法 #2 const result = [].concat(one, two, three) // 新方法 const result = [...one, ...two, ...three]
輕鬆克隆數組和對象:fetch
const obj = { ...oldObj } const arr = [ ...oldArr ]
注意:這會產生一個淺克隆。
經過結構讓函數以及函數函數調用更具備可讀性:
const getStuffNotBad = (id, force, verbose) => { ...do stuff } const getStuffAwesome = ({ id, name, force, verbose }) => { ...do stuff } // 在代碼的其它某個地方... 到底什麼是 true, true? getStuffNotBad(150, true, true) // 在代碼的其餘某個地方.. I ❤ JS!!! getStuffAwesome({ id: 150, force: true, verbose: true })
已經所有知道了?
你是一個真正的黑客,讓咱們繼續在 Twitter上的談話你還能夠看看個人 Torii 教學,咱們讓「SaaS 頭痛」消失。