**
What is the output of code below:
**
let x, y;
[x=5, y=7] = [1];
console.log(x);
console.log(y);
`
Follow for more challenges ahead!!!😎
We're a place where coders share, stay up-to-date and grow their careers.
For further actions, you may consider blocking this person and/or reporting abuse
Subhendu Dash -
Tanwa Sripan -
Tazim Rahbar -
JsRocks -
Once suspended, halimshams will not be able to comment or publish posts until their suspension is removed.
Once unsuspended, halimshams will be able to comment and publish posts again.
Once unpublished, all posts by halimshams will become hidden and only accessible to themselves.
If halimshams is not suspended, they can still re-publish their posts from their dashboard.
Discussion (2)
x=1 y=7
Correct ✔