首頁  >  文章  >  web前端  >  有關ES6的7個實用技巧有哪些?

有關ES6的7個實用技巧有哪些?

亚连
亚连原創
2018-06-11 15:27:521256瀏覽

本文給大家分享了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中文網其他相關文章!

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn