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

Related questions

0 votes
asked Mar 11 in JavaScript by DavidAnderson
0 votes
asked Jun 7, 2019 in Data Handling using R by tempuser
...