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 参考答案