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

const obj = { a: 'one', b: 'two', a: 'three' }
console.log(obj)
  • A: { a: "one", b: "two" }
  • B: { b: "two", a: "three" }
  • C: { a: "three", b: "two" }
  • D: SyntaxError

参考答案

你可能感兴趣的:(选择篇(034)-下面代码的输出是什么?)