What will this code print?
const obj = {
a: 1, b: 2, c: 3,};const obj2 = {
...obj, a: 0,};console.log(obj2.a, obj2.b);
const obj = {
a: 1, b: 2, c: 3,};const obj2 = {
...obj, a: 0,};console.log(obj2.a, obj2.b);What will this code print?
const obj = {
a: 1, b: 2, c: 3,};const obj2 = {
...obj, a: 0,};console.log(obj2.a, obj2.b);题目类型: 技术面试题
这是一道技术面试题,常见于澳洲IT公司面试中。
难度: medium
分类: JavaScript
标签: JavaScript
参考答案摘要
[ ] Nothing, it will throw an error Nothing, it will throw an error [x] 0 2 0 2 [ ] undefined 2 undefined 2 [ ] undefined 2 undefined 2
本题提供 STAR 原则详细解答和技术解析,登录匠人学院学习中心即可查看完整答案。