码迷,mamicode.com
首页 > Web开发 > 详细

js typeof instanceof

时间:2015-06-24 16:34:34      阅读:113      评论:0      收藏:0      [点我收藏+]

标签:typeof   instanceof   js instanceof   js typeof   typeof instanceof   

一般都是用typeof判断变量是否存在

如if(typeof a!="undefined"){},而不要去使用if(a)因为如果a不存在(未声明)则会出错,


因为typeof遇到null,数组,对象时都会返回object类型,所以当我们要判断一个对象是否是数组时

或者判断某个变量是否是某个对象的实例则要选择使用另一个关键语法instanceof


instanceof用于判断一个变量是否某个对象的实例,如var a=new Array();alert(a instanceof Array);会返回true,

同时alert(a instanceof Object)也会返回true;这是因为Array是object的子类。

再如:function test(){};var a=new test();alert(a instanceof test)会返回true。



js typeof instanceof

标签:typeof   instanceof   js instanceof   js typeof   typeof instanceof   

原文地址:http://blog.csdn.net/stronglyh/article/details/46621945

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!