Front End Programmer Question:
Download Questions PDF

Explain what is the Difference between null and undefined?

Front End Developer Interview Question
Front End Developer Interview Question

Answer:

null is an object with no value. undefined is a type.
typeof null; // "object"
typeof undefined; // "undefined"

Download Front End Developer Interview Questions And Answers PDF

Previous QuestionNext Question
What is variable scope?Explain what is the lazy loading?