普通会员
登录
题库
实习信息
校招公告
参访活动
题库
软件开发
题目列表
const Book = { price: 32 } const book = Object.c...
单选题
const Book = {
price: 32
}
const book = Object.create(Book);
book.type = 'Math';
delete book.price;
delete book.type;
console.log(book.price);
console.log(book.type);
执行以上代码后,输出的结果是()
A.
undefined, undefined
B.
32, undefined
C.
undefined, 'Math'
D.
32, 'Math'
上一题
[单选题] function side(arr) { arr[0] = arr[2]; } function func1(a, b, c = 3) { c = 10; side(argum...
下一题
[单选题] 代码片段1: check('first'); function check(ars){ console.log(ars); } 代码片段2: check('second');...
纠错
题目信息
校招真题
-
正确率
0
评论
12
点击
收藏
已收藏
错题本
已加入错题本
我的笔记
登录添加笔记