Skip to content

Latest commit

 

History

History
11 lines (7 loc) · 238 Bytes

File metadata and controls

11 lines (7 loc) · 238 Bytes

下面代码会返回什么?

console.log(typeof typeof 1);

?> typeof 1 返回 "number" and typeof "number" 返回 "string"

参考资料:

题目来源