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
时间: 2024-10-07 14:22:31