判断字符串、数组、对象的数据类型

2018-08-26 17:26:34来源:博客园 阅读 ()

新老客户大回馈,云服务器低至5折

 1 var str1=new String('str1');
 2 var str2='str2';
 3 console.log(typeof str1);//object
 4 console.log(typeof str2);//string
 5 console.log(str1 instanceof String);//true
 6 console.log(str2 instanceof String);//false
 7 console.log(str1.constructor==String);//true
 8 console.log(str2.constructor==String);//true
 9 
10 var a = ['hello','world'];
11 console.log(typeof a);//object
12 console.log(a.toString());//hello,world
13 console.log(Object.prototype.toString.call(a));//[object Array]
14 console.log(Array.prototype.isPrototypeOf(a));//true
15 console.log(Array.isArray(a));//true
16 console.log(a instanceof Array);//true
17 console.log(a instanceof Object);//true
18 console.log(a.constructor==Array);//true
19 console.log(a.constructor==Object);//false
20 
21 var b = {'hello':'world'};
22 console.log(typeof b);//object
23 console.log(b.toString());//[object Object]
24 console.log(Object.prototype.toString.call(b));//[object Object]
25 console.log(Object.prototype.isPrototypeOf(b));//true
26 console.log(b instanceof Object);//true
27 console.log(b.constructor==Object);//true

 

标签:

版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有

上一篇:微信小程序有旋转动画效果的音乐组件

下一篇:IE浏览器关于ajax的缓存机制