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
yeah that is strange. It appears to be just in the way console.log works. If you just do:
constz=[null,undefined]z;
the right side of the repl responds with [null, undefined]. Since it evaluates correctly, this doesn't strike me as a crisis, just another hairy js edge.
Steps to reproduce
const z = [null, undefined]
console.log(z)
Expected result
You should see
[null, undefined]
in the right-hand sideActual result
You see
[null, null]
Browser: Chrome 59.0.3071.115
OS: OSX 10.12.5 (Sierra)
Kinda strange; I'm mostly just curious if others have seen this issue.
The text was updated successfully, but these errors were encountered: