console.log(typeof typeof typeof null);
console.log(typeof console.log(1));
第一行代码输出结果为 "string"。解释如下:
- typeof null 返回 "object",因为在JavaScript中,null 被认为是一个空对象引用。
- typeof "object" 返回 "string"。
- typeof "string" 返回 "string"。
因此,最终结果为 "string"。
第二行代码先输出 1,然后输出结果为 "undefined"。解释如下:
- console.log(1) 输出 1。
- console.log 函数没有返回值,因此返回 undefined。
- typeof undefined 返回 "undefined"。
因此,最终结果为:
1
undefined