Guest User

WTF JS

a guest
May 31st, 2016
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. ''        ==   '0'           // false
  2. 0         ==   ''            // true
  3. 0         ==   '0'           // true
  4. false     ==   'false'       // false
  5. false     ==   '0'           // true
  6. false     ==   undefined     // false
  7. false     ==   null          // false
  8. null      ==   undefined     // true
  9. " \t\r\n" ==   0             // true
Add Comment
Please, Sign In to add comment