Advertisement
Guest User

Untitled

a guest
Oct 13th, 2019
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. let a; // Initialized with undefined
  2. let b = null; // Explicit initialization with null
  3.  
  4. console.log(a); // prints undefined
  5. console.log(b); // prints null
  6.  
  7. console.log(a == b) // undefined == null prints true
  8. console.log(a === b) // undefined === null prints false
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement