es6对象新增扩展~ 属性简写 1 2 3 const a = 1 ; const b = { a }; // 属性简写 console . log (b); // {a: 1} ...