js学习总结_基于数据类型检测的四种方式(必看)
1、typeof 用来检测数据类型的运算符 console.log(typeof 12)//Number 使用typeof检测数据类型,首先返回的都是字符串 ,其次字符串中包含了对应的数据类型 例如:”number”、”string”、”boolean”、”undefined”、”function”、”object” console.log(typeof typeof function(){}) //string 局限性: typeof null -> “object” 不能具体的细分是数组还是正则,还是对象中其他的值,因为使用typeof检测数据类型,对于对象数据类型中的值,最后返回的结
用户评论