Login
Remember
Register
Ask a Question
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 };
0
votes
asked
Jan 21, 2020
in
ECMAScript
by
GeorgeBell
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
Please
log in
or
register
to answer this question.
1
Answer
0
votes
answered
Jan 21, 2020
by
GeorgeBell
True
...