Last updated 3 years ago
Was this helpful?
typeof typeof 0
It evaluates to "string".
"string"
typeof 0 evaluates to the string "number" and therefore typeof "number" evaluates to "string".
typeof 0
"number"
typeof "number"