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
参考答案
const obj = {a: 'one', b: 'two', a: 'three'}
console.log(obj)
{a: "one", b: "two"}
{b: "two", a: "three"}
{a: "three", b: "two"}
SyntaxError
参考答案