Front End Programmer Question:

Explain what is the Difference between null and undefined?

Tweet Share WhatsApp

Answer:

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

Download Front End Developer PDF Read All 67 Front End Developer Questions
Previous QuestionNext Question
What is variable scope?Explain what is the lazy loading?