Q
What will be the output of typeof NaN in JavaScript?

Answer & Solution

Answer: Option B
Solution:
The typeof operator in JavaScript returns the data type of a variable or expression. In this case, typeof NaN will return the string 'number', indicating that NaN is considered a special numeric value in JavaScript rather than a distinct data type.
Related Questions on Average

What will be the output of typeof {} in JavaScript?

A). Object

B). Null

C). Undefined

D). Boolean

What will be the output of typeof undefined in JavaScript?

A). String

B). Undefined

C). Null

D). Object

Which data type is used to represent a unique identifier in JavaScript?

A). Identifier

B). Key

C). Object

D). Symbol

Which of the following is not a valid JavaScript variable name according to naming conventions?

A). myVariable

B). _myVariable

C). 2ndVariable

D). MyVariable

Which of the following is not a valid JavaScript data type?

A). Integer

B). Object

C). Symbol

D). NaN

Which data type is used to represent a list of elements in JavaScript?

A). List

B). Array

C). Tuple

D). Set

What will be the data type of the result when dividing a number by zero in JavaScript?

A). Infinity

B). NaN

C). Undefined

D). Null

What is the data type of the value 'null' (as a string) in JavaScript?

A). Object

B). String

C). Null

D). Undefined

What data type is used to represent a collection of key-value pairs in JavaScript?

A). Object

B). Array

C). Map

D). Set

Which data type is used to represent the absence of a value in JavaScript?

A). Null

B). Undefined

C). NaN

D). Boolean