1.扩展运算符:, 2, 3]) // 1 2 3 console.log(1, ...[2, 3, 4], 5) // 1 2 3 4 5 用于函数调用 function add(x, y) { return x + y; } const numbers = [4, 38]; add(...numbers) // 42 扩展运算符后面还可以放置表达式. const arr = [ ...(x > 0 ? ['a'] : []), 'b', ]; , 1, 2]; let arr2 = [3,…