Front End Programmer Question: Download Front End Developer PDF

Explain what is 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
Explain what "this" is in JavaScript?Tell me why do we recommend external CSS or Javascript versus inline?