Skip to content

Instantly share code, notes, and snippets.

@geastwood
Created March 27, 2014 14:47
Show Gist options
  • Save geastwood/9809161 to your computer and use it in GitHub Desktop.
Save geastwood/9809161 to your computer and use it in GitHub Desktop.
"hello".missing; // log undefined
[][99]; // log undefined
{} + {}; // log NaN
[] + []; // log "" (empty string)
[] + {}; // log "[object Object]"
{} + []; // log 0
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment