Front End Web Developer Question:

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 Web Developer PDF Read All 76 Front End Web Developer Questions
Previous QuestionNext Question
Tell us what are the advantages of using JavaScript?Tell me how To Use A Function A Class?