Answers

Question and Answer:

  Home  Senior Frontend Developer

⟩ Tell me 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"

 146 views

More Questions for you: