送給 ES6 開發者的7個 hack

原文: 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

7 Hacks for ES6 Developers

關注原來的 JavaScript hacks,上面有一些新的好東西。2018 使用 JavaScript 寫代碼真的又變得有意思了!es6

Hack #1 — 交換變量

使用數組結構來交換值github

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

// 是的,很神奇

Hack #2 — 使用解構的 Async/Await

再說一遍,數組結構真的很棒。經過和 async/await 以及 promise 結合能夠讓複雜的流程變得簡單。數組

const [user, account] = await Promise.all([
  fetch('/user'),
  fetch('/account')
])

Hack #3 — 調試

對於那些喜歡使用 console.logs 來調試的人來講,如今有一些特別酷的(而且我也據說過 console.table):promise

const a = 5, b = 6, c = 7
console.log({ a, b, c })

// 輸出優雅的對象:
// {
//    a: 5,
//    b: 6,
//    c: 7
// }

Hack #4 — 一行搞定一切

對於數組操做,語法能夠很是緊湊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

Hack #5 — 數組拼接

拓展操做符能夠用來代替 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]

Hack #6 — 克隆

輕鬆克隆數組和對象:fetch

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

注意:這會產生一個淺克隆。

Hack #7 — 命名參數

經過結構讓函數以及函數函數調用更具備可讀性:

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 頭痛」消失。

相關文章
相關標籤/搜索