选择篇(006)-下面代码的输出是什么?

81 阅读1分钟
let newList = [1, 2, 3].push(4);

console.log(newList.push(5));
A: [1,2,3,4,5]
B: [1,2,3,5]
C: [1,2,3,4]
D: Error

参考答案: