Login to manage your account

Please enter a valid email address.
Forgot Password?
Please enter a valid password.
OR

Don't have an account yet? Sign up

What is the difference between null and undefined?

  1. A undefined means a variable has been declared but not assigned; null is an explicitly assigned empty value
  2. B They are identical
  3. C null is a number, undefined is an object
  4. D undefined can only be used in functions
Answer

undefined means a variable has been declared but not assigned; null is an explicitly assigned empty value

undefined is the default absence of a value, while null is a deliberate assignment representing no value. Note that null == undefined is true but null === undefined is false.

All Javascript MCQs

Login to manage your account

Please enter a valid email address.
Forgot Password?
Please enter a valid password.
OR

Don't have an account yet? Sign up as