On April 15, 2025 at 13:48

Responded to @kasparsd:

Property Shorthand 📜 ES6 (2015)

const x = 1, y = 2;
const point = { x, y };

Less typing, same object.