Advertisement
Guest User

Untitled

a guest
Jul 20th, 2019
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. 0==false // true, because false is equivalent of 0
  2. 0===false // false, because both operands are of different type
  3. 2=="2" // true, auto type coercion, string converted into number
  4. 2==="2" // false, since both operands are not of same type
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement