Front End Programmer Question:
Download Job Interview Questions and Answers PDF
Explain what is the Difference between null and undefined?
Answer:
null is an object with no value. undefined is a type.
typeof null; // "object"
typeof undefined; // "undefined"
typeof null; // "object"
typeof undefined; // "undefined"
Download Front End Developer Interview Questions And Answers
PDF
Previous Question | Next Question |
What is variable scope? | Explain what is the lazy loading? |