es6(數組的擴展)

擴展運算符(...) 基本內容 做用 :將一個數組轉爲用逗號分隔的參數序列web console.log(1, ...[2, 3, 4], 5) // 1 2 3 4 5 用途 :函數調用數組 function push(array, ...items) { array.push(...items); } function add(x, y) { return x + y; } con
相關文章
相關標籤/搜索