本文給大家分享了es6的7個實用技巧,非常不錯,具有參考借鑒價值,有興趣的朋友一起學習吧
Hack #1 交換元素
利用數組解構來實現值的互換
let a = 'world', b = 'hello' [a, b] = [b, a] console.log(a) // -> hello console.log(b) // -> world
Hack #2 調試
我們經常使用console.log()來進行調試,試試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 單一語句
ES6時代,操作陣列的語句將會更加的緊湊
// 寻找数组中的最大值 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 陣列拼接
展開運算子可以取代concat的地位了
const one = ['a', 'b', 'c'] const two = ['d', 'e', 'f'] const three = ['g', 'h', 'i'] const result = [...one, ...two, ...three]
#Hack #5 製作副本
我們可以很容易的實作數組和物件的淺拷貝
const obj = { ...oldObj } const arr = [ ...oldArr ]
Hack #6 命名參數
以上是有關ES6的7個實用技巧有哪些?的詳細內容。更多資訊請關注PHP中文網其他相關文章!