console.log(typeof let);
一元typeof运算符需要一个表达式.我错过了关于let语句的一些内容吗?
在MDN docs中查看更多.
用未声明的变量来看这个.
console.log(typeof elefromstack)
在严格模式下,会引发错误.
'use strict' console.log(typeof let);