console.log(typeof typeof 1);
typeof 1 返回 "number"。 typeof "number" 返回 "string"。
typeof 1
"number"
typeof "number"
"string"