Responded to @kasparsd:
Property Shorthand 📜 ES6 (2015)
const x = 1, y = 2;
const point = { x, y };
Less typing, same object.
Responded to @kasparsd:
Property Shorthand 📜 ES6 (2015)
const x = 1, y = 2;
const point = { x, y };
Less typing, same object.