Understanding undefined, null, undeclared in Javascript
undefined
It's a primitive data type in Javascript.
Any variable which has been declared but has not been assigned any value has the value undefined.
During the memory creation phase of the execution context, every variable is assigned the value o...
shivaansh.hashnode.dev2 min read