Home > Article > Web Front-end > 7 practical tips for ES6
This article mainly shares with you 7 practical skills of es6. It is very good and has reference value. Friends who are interested can learn it together. I hope it can help everyone.
Hack #1 Exchange elements
Use array destructuring to achieve value exchange
let a = 'world', b = 'hello' [a, b] = [b, a] console.log(a) // -> hello console.log(b) // -> world
Hack #2 Debugging
We often use console.log() for debugging, it doesn’t hurt to try console.table().
const a = 5, b = 6, c = 7 console.log({ a, b, c }); console.table({a, b, c, m: {name: 'xixi', age: 27}});
Hack #3 Single statement
In the ES6 era, statements that operate on arrays will be more compact
// 寻找数组中的最大值 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 #4 Array splicing
The expansion operator can replace concat
const one = ['a', 'b', 'c'] const two = ['d', 'e', 'f'] const three = ['g', 'h', 'i'] const result = [...one, ...two, ...three]
Hack #5 Making a copy
We can easily implement shallow copies of arrays and objects
const obj = { ...oldObj } const arr = [ ...oldArr ]
Hack #6 Named Parameters
The above is the detailed content of 7 practical tips for ES6. For more information, please follow other related articles on the PHP Chinese website!