JS Coding Questions Logo
JS Coding Questions
#75💼 Interview

What is the difference between null and undefined

Advertisement

728x90

Below are the main differences between null and undefined,

| Null | Undefined |

| ----------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- |

| It is an assignment value which indicates that variable points to no object. | It is not an assignment value where a variable has been declared but has not yet been assigned a value. |

| Type of null is object | Type of undefined is undefined |

| The null value is a primitive value that represents the null, empty, or non-existent reference. | The undefined value is a primitive value used when a variable has not been assigned a value. |

| Indicates the absence of a value for a variable | Indicates absence of variable itself |

| Converted to zero (0) while performing primitive operations | Converted to NaN while performing primitive operations |

Advertisement

Responsive Ad
🎯 Practice NowRelated Challenge

JavaScript Coding Exercise 76

Test your knowledge with this interactive coding challenge.

Start Coding

Advertisement

728x90
75of476