0 votes
in ECMAScript by
Check the Below code and check correct or not

const { x, y } = { x: 11, y: 8 };

is the Same as

const { x: x, y: y } = { x: 11, y: 8 };

(1)True

(2)False

1 Answer

0 votes
by
True
...