关于javascript:选择篇034下面代码的输出是什么

3次阅读

共计 130 个字符,预计需要花费 1 分钟才能阅读完成。

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

参考答案

正文完
 0