其他分享
首页 > 其他分享> > 7.(单选题)下面代码的输出是什么

7.(单选题)下面代码的输出是什么

作者:互联网

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

答案: D

解析:

.push()方法返回数组的长度,而不是数组的本身。

参与互动

标签:输出,console,log,newList,代码,数组,push,单选题
来源: https://blog.csdn.net/weixin_46281185/article/details/119173990