typeof注意点
- 8种返回值:string、number、boolean、bigint、symbol、function、object(null, array)、undefined
- typeof 返回的值是字符串类型
- typeof 一个不存在(未定义)的值,不报错,返回字符串undefined
1 | typeof(123) // number |
1 | console.log( typeof(1 - "1") ) // number |
1 | console.log( typeof(typeof(a)) ) // string; hint: typeof() 返回的是字符串 |