What is the return type of typeof for standard JavaScript objects?
A
xml
B
object
C
dom
D
html
Correct Answer: object
The typeof operator returns “object” for all standard JavaScript objects. It returns “object” for a null, “number” for NaN, “number” for Infinity, “object” for a “new Number(1)” and “object” for an array.