Login or Sign up to attempt the question.
What would be the output? [Object Destructuring]
Option 1
{ "userId": 1, "name": "Devtools Tech", "subscribe": true, "link": "https://bit.ly/devtools-yt" }
Option 2
{ "userId": null, "name": "", "subscribe": false, "link": "" }
Option 3
{ "userId": 1, "name": "Devtools Tech", "subscribe": false, "link": "https://bit.ly/devtools-yt" }
Option 4
{ "userId": 1, "name": "", "subscribe": true, "link": "" }