Explain what is the Difference between null and undefined?

Submitted by: Muhammad
null is an object with no value. undefined is a type.
typeof null; // "object"
typeof undefined; // "undefined"
Submitted by: Muhammad

Read Online Front End Programmer Job Interview Questions And Answers