Answers

Question and Answer:

  Home  Front End Developer

⟩ Explain what is the Difference between null and undefined?

null is an object with no value. undefined is a type.

typeof null; // "object"

typeof undefined; // "undefined"

 187 views

More Questions for you: