Skip to content

Instantly share code, notes, and snippets.

@zerobias
Last active February 3, 2017 09:33
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save zerobias/8484ddde5579e571b45e2eee122cfa1d to your computer and use it in GitHub Desktop.
Save zerobias/8484ddde5579e571b45e2eee122cfa1d to your computer and use it in GitHub Desktop.
JS weirdness
0 < null; // false
0 > null; // false
0 == null; // false
0 <= null; // true
0 >= null // true
-1 == false; // => false
-1 == true; // => false
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment