InterviewSolution
Saved Bookmarks
| 1. |
Check the Below code and check correct or not |
|
Answer» 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 Answer:-(1)True |
|