ES6的7个实用技巧

时间:2020-12-06 16:04:19

Hack #1 交换元素

利用 数组解构来实现值的互换

 
  1. let a = 'world', b = 'hello'

  2. [a, b] = [b, a]

  3. console.log(a) // -> hello

  4. console.log(b) // -> world

Hack #2 调试

我们经常使用 console.log()来进行调试,试试 console.table()也无妨。

 
  1. const a = 5, b = 6, c = 7

  2. console.log({ a, b, c });

  3. console.table({a, b, c, m: {name: 'xixi', age: 27}});

Hack #3 单条语句

ES6时代,操作数组的语句将会更加的紧凑

 
  1. // 寻找数组中的最大值

  2. const max = (arr) => Math.max(...arr);

  3. max([123, 321, 32]) // outputs: 321

  4. // 计算数组的总和

  5. const sum = (arr) => arr.reduce((a, b) => (a + b), 0)

  6. sum([1, 2, 3, 4]) // output: 10

Hack #4 数组拼接

展开运算符可以取代 concat的地位了

 
  1. const one = ['a', 'b', 'c']

  2. const two = ['d', 'e', 'f']

  3. const three = ['g', 'h', 'i']

  4. const result = [...one, ...two, ...three]

Hack #5 制作副本

我们可以很容易的实现数组和对象的 浅拷贝

 
  1. const obj = { ...oldObj }

  2. const arr = [ ...oldArr ]

Hack #6 命名参数???

解构使得函数声明和函数的调用更加可读

 
  1. // 我们尝尝使用的写法

  2. const getStuffNotBad = (id, force, verbose) => {

  3.  ...do stuff

  4. }

  5. // 当我们调用函数时, 明天再看,尼玛 150是啥,true是啥

  6. getStuffNotBad(150, true, true)

  7. // 看完本文你啥都可以忘记, 希望够记住下面的就可以了

  8. const getStuffAwesome = ({id, name, force, verbose}) => {

  9.  ...do stuff

  10. }

  11. // 完美

  12. getStuffAwesome({ id: 150, force: true, verbose: true })

Hack #7 Async/Await结合数组解构

数组解构非常赞!结合 Promise.all和 解构和 await会使代码变得更加的简洁

 
  1. const [user, account] = await Promise.all([

  2.  fetch('/user'),

  3.  fetch('/account')

  4. ])


原文:https://medium.com/dailyjs/7-hacks-for-es6-developers-4e24ff425d0b

译文:https://segmentfault.com/a/1190000012871249


ES6的7个实用技巧