javascript如何判断类型
1、对于字符串类型, typeof 返回的值是 string。比如typeof("123")返回的值是string。
2、对于布尔类型, typeof 返回的值是 boolean 。比如typeof(true)返回的值是boolean。
3、对于对象、数组、null 返回的值是 object 。比如typeof(window),typeof(document),typeof(null)返回的值都是object。
4、 对于函数类型,返回的值是 function。比如:typeof(eval),typeof(Date)返回的值都是function。
5、如果运算数是没有定义的(比如说不存在的变量、函数或者undefined),将返回undefined。比如:typeof(sss)、typeof(undefined)都返回undefined。
console.log(Object.prototype.toString.call(123)) //[object Number]
console.log(Object.prototype.toString.call('123')) //[object String]
console.log(Object.prototype.toString.call(undefined)) //[object Undefined]
console.log(Object.prototype.toString.call(true)) //[object Boolean]
console.log(Object.prototype.toString.call({})) //[object Object]
console.log(Object.prototype.toString.call([])) //[object Array]
console.log(Object.prototype.toString.call(function(){})) //[object Function]
console.log(Object.prototype.toString.call(null)) //[object Null]
发表评论 (审核通过后显示评论):