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

posted @ 2019-02-26 17:44  九许尘歌  阅读(257)  评论(0编辑  收藏  举报