标签:typeof false fun str ber null fine bsp number
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
标签:typeof false fun str ber null fine bsp number
原文地址:http://www.cnblogs.com/jr-goon/p/7479072.html