null and undefined?

  • undefined → variable declared but not assigned.
  • null → assigned value, meaning “nothing”.

Example:

let a;      // undefined
let b = null; // null

Comments

Leave a Reply

Your email address will not be published. Required fields are marked *