你猜猜typeof (typeof 1) 会返回什么值(类型)?!typeof
typeoftypeof操作符返回一个字符串,表示未经计算的操作数的类型。语法:var num = a; console.log(typeof (num));或console.log(typeof num)复制代码typeof 可以返回的类型为:number、string、boolean、undefined、null、object、function还有新的symbol(详见MDN)/...