Front End Programmer Question:
Download Questions PDF

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