const a = "foo"; const b = 42; const c = {}; // Shorthand property names const o = { a, b, c }; // In other words, console.log(o.a === { a } ...
確定! 回上一頁