ES6 潮人的JS黑科技

原文链接: JavaScript hacks for ES6 hipsters
紧跟着原作JavaScript hacks for hipsters, 这里我又准备了些干货。在2017年用JS 编程真的是其乐无穷。

下图的这张 吃豆人 游戏背景中没有JS,没有黑科技,没有ES6:

Photo by Erik Lucatero on Unsplash

黑科技 #1 - 交换变量

使用 数组的解构 来交换变量的值;

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

黑科技 #2 - Async/Await 的解构

再一次的, 数组的解构是棒棒哒。结合async/ awaitpromises 来让复杂的流变的简单。

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

黑科技 #3 - Debugging

这个是为那些喜欢用console.log的人准备的,这里为大家展示一些很棒的用法(当然,我也知道console.table).

const a = 5, b = 6, c = 7
console.log({ a, b, c })
// outputs this nice object:
// {
//    a: 5,
//    b: 6,
//    c: 7
// }

黑科技 #4 - 一行代码搞定

操作数组的语法是如此的精简:

// Find max value
const max = (arr) => Math.max(...arr);
max([123, 321, 32]) // outputs: 321
// Sum array
const sum = (arr) => arr.reduce((a, b) => (a + b), 0)
sum([1, 2, 3, 4]) // output: 10

黑科技 #5 数组连接

扩赞运算符... 可以用来代替 concat:

const one = ['a', 'b', 'c']
const two = ['d', 'e', 'f']
const three = ['g', 'h', 'i']
// Old way #1
const result = one.concat(two, three)
// Old way #2
const result = [].concat(one, two, three)
// New
const result = [...one, ...two, ...three]

黑科技 #6 -拷贝

拷贝数组和对象也是如此的简单:

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

提醒:这是浅拷贝;

黑科技 #7 - 带名字的参数

解构赋值让定义和运行函数更加的具有可读性:

const getStuffNotBad = (id, force, verbose) => {
  ...do stuff
}
const getStuffAwesome = ({ id, name, force, verbose }) => {
  ...do stuff
}
// Somewhere else in the codebase... WTF is true, true?
getStuffNotBad(150, true, true)
// Somewhere else in the codebase... I ❤ JS!!!
getStuffAwesome({ id: 150, force: true, verbose: true })
早已经全部掌握了?

你是一个十足的黑科技潮人,在评论里写下你的黑科技。

你可能感兴趣的:(ES6 潮人的JS黑科技)