[1, 2, 3, 4], 10
[1, 2, 3, 4, 10]
function append(arr, item) { let array=[...arr]; //数组解构 array.push(item); return array; }