7 个 ES6 编码技巧
Hack #1 — 交换变量
用于 Array Destructuring
交换值
let a = 'world', b = 'hello'
[a, b] = [b, a]
console.log(a) // -> hello
console.log(b) // -> world
// Yes, it's magic
Hack #2 — 使用解构的 Async/Await
再次强调, Array Destructuring
非常棒。结合 async/await
并承诺让复杂的流程变得简单。
const [user, account] = await Promise.all([
fetch('/user'),
fetch('/account')
])
Hack #3—— 调试
对于那些喜欢使用 console.log
s 进行调试的人来说,这里有一些很棒的东西(是的,我听说过 console.table
):
const a = 5, b = 6, c = 7
console.log({ a, b, c })
// outputs this nice object:
// {
// a: 5,
// b: 6,
// c: 7
// }
Hack #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
Hack #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 ]
注意:这将创建一个浅克隆。
Hack #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 love JS!!!
getStuffAwesome({ id: 150, force: true, verbose: true })
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
上一篇: Executors 介绍和使用
下一篇: 不要相信一个熬夜的人说的每一句话
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论