Q
What is the output of typeof null?

Answer & Solution

Answer: Option C
Solution:
The typeof operator returns 'object' for the null value due to a historical bug in JavaScript.
Related Questions on Average

What is the result of typeof Symbol('id')?

A). symbol

B). object

C). string

D). undefined

What is the result of null === undefined?

A). 1

B). 0

C). Error

D). NaN

Which function can convert a number to a string in JavaScript?

A). toString()

B). parseInt()

C). String()

D). Number()

What is the data type of 42 in JavaScript?

A). String

B). Boolean

C). Number

D). Object

What is the output of '5' + 3?

A). 8

B). 53

C). 8

D). Error

Which operator checks both value and type for equality in JavaScript?

A). ==

B). !=

C). ===

D). !==

How do you declare a variable with an undefined value?

A). let x;

B). let x = '';

C). let x = 0;

D). let x = null;

What is the result of null == undefined?

A). 1

B). 0

C). Error

D). NaN

What will typeof [1, 2, 3] return?

A). array

B). object

C). number

D). list

What is the result of typeof undefined?

A). undefined

B). null

C). object

D). number