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"
MDN docs for typeofarrow-up-right
Last updated 4 years ago