Q
What does typeof new Error('message') return?

Answer & Solution

Answer: Option A
Solution:
new Error('message') creates an Error object, so typeof returns 'object'.
Related Questions on Average

What is the result of typeof 'hello'?

A). string

B). object

C). undefined

D). number

What is the result of typeof new SyntaxError('syntax error')?

A). syntaxerror

B). object

C). function

D). undefined

What is the result of typeof new Float64Array()?

A). float64array

B). array

C). object

D). undefined

What is the result of typeof NaN?

A). number

B). NaN

C). undefined

D). object

What does typeof { name: 'John' } return?

A). object

B). array

C). function

D). undefined

What is the result of typeof new TypeError('type error')?

A). typeerror

B). object

C). function

D). undefined

What does typeof console return in a web browser environment?

A). console

B). object

C). function

D). undefined

What does typeof Symbol('id') return?

A). symbol

B). string

C). object

D). undefined

What does typeof 42 return?

A). number

B). string

C). boolean

D). undefined

What does typeof true return?

A). number

B). boolean

C). undefined

D). object