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 Oct 31, 2019 in Other by MBarbieri
+3 votes
asked Jul 28, 2019 in R Language by Aarav2017
...