Answers

Question and Answer:

  Home  Front End Developer

⟩ Explain what is Difference between null and undefined?

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

typeof null; // "object"

typeof undefined; // "undefined"

 186 views

More Questions for you: