typeof 踩坑总结

typeof '123' == 'string'  // true

typeof ('123' == 'string' ) // "boolean"

typeof 123 == Number // false

typeof 123 == 'number' // true

typeof (123 == Number) // "boolean"

typeof (1===1) //"boolean"

typeof 1===1 // false

猜你喜欢

转载自www.cnblogs.com/zuojiayi/p/10438922.html