typeof 2 输出 number
typeof null 输出 object
typeof {} 输出 object
typeof [] 输出 object
typeof (function(){}) 输出 function
typeof undefined 输出 undefinedtypeof ‘222’ 输出 string
typeof true 输出 boolean
js判断数据的类型typeof的使用
最新推荐文章于 2024-08-16 00:20:02 发布
typeof 2 输出 number
typeof null 输出 object
typeof {} 输出 object
typeof [] 输出 object
typeof (function(){}) 输出 function
typeof undefined 输出 undefinedtypeof ‘222’ 输出 string
typeof true 输出 boolean