You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on May 17, 2025. It is now read-only.
let arr = [1, 2, 3] arr[0],arr[2] = arr[2], arr[0] console.log(arr)This should throw an error, but it does not and simply prints out 1, 2, 3. The left hand side is not flagged as a comma operator.