Структуры (записи)

//In Javascript there are no structures
let colorPoint = {
    x: 0, y: 0,
    color: "red"
};

//Since ES9 2018
let { color, ...point } = colorPoint;

console.log("color is", color);
console.log("point is", point);