Created
December 25, 2011 00:41
-
-
Save mraleph/1518569 to your computer and use it in GitHub Desktop.
typeof null on v8
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
mraleph@whitestar|~/src/v8/% ./d8 [svn|bleeding_edge-10247] | |
V8 version 3.7.4 (candidate) [console: dumb] | |
d8> typeof null | |
object | |
d8> ^C | |
mraleph@whitestar|~/src/v8/% ./d8 --harmony [svn|bleeding_edge-10247] | |
V8 version 3.7.4 (candidate) [console: dumb] | |
d8> typeof null | |
null | |
d8> ^C |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment