What is the difference between Null and Undefined JavaScript?

Null vs Undefined

Yadav, Niteesh
JavaScript in Plain English
2 min readApr 2, 2020

--

Null means object value is absent, intentionally. Null expresses lack of identification, indicating that a variable points to no object.

In simpler terms, we can say that it is a keyword which signifies ‘no value’ or nonexistence of any value.

--

--