typeof的返回值

typeof一共可以返回6种值,分别是number、boolean、string、function、object、undefined

typeof(1) typeof(NaN)    返回number

typeof(true) typeof(false)    返回boolean

typeof(' ')          返回string

typeof(function fun(){})    返回function

typeof(undefined)      返回undefined

typeof(null)和new出来的实例返回值都是 object

posted on 2017-09-05 15:59  jr_goon  阅读(1387)  评论(0编辑  收藏  举报