Skip to content

Instantly share code, notes, and snippets.

@camelcaseblog
Last active May 28, 2019 19:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save camelcaseblog/1813ad72e8c2695c0d7de0313515c826 to your computer and use it in GitHub Desktop.
Save camelcaseblog/1813ad72e8c2695c0d7de0313515c826 to your computer and use it in GitHub Desktop.
> null == undefined
true
> null === undefined
false
> !!null === !!undefined
true
> typeof null
"object"
> typeof undefined
"undefined"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment