Answers for "what is the difference between null and undefined"

1

difference between undefined and null?

null is a special object because typeof null returns 'object'. 
On the other hand,
undefined means that the variable has not been declared,
or has not been given a value.
Posted by: Guest on July-10-2021
0

what is the difference between null and undefined

Undefined  used for unintentionally missing values.

Null       used for intentionally missing values.
Posted by: Guest on August-17-2020
0

null vs undefined

//loosely equal (compare values between two variables)
null == undefined // true  ( null => 0 , undefined => NAN)

//strictly not equal (compare both type and value) 
null === undefined // false  (typeof null => object , typeof undefined => undefined)
null !== undefined // true   (typeof null => object , typeof undefined => undefined)
Posted by: Guest on August-12-2021

Code answers related to "what is the difference between null and undefined"

Browse Popular Code Answers by Language