首页 > 编程语言 > 详细

javascript判断对象

时间:2016-08-05 00:53:46      阅读:203      评论:0      收藏:0      [点我收藏+]
 1 var assert = require(‘chai‘).assert;
 2 
 3 describe(‘Array‘, function() {
 4   describe(‘#indexOf()‘, function() {
 5     it(‘should return -1 when the value is not present‘, function() {
 6         
 7         var obj = {};
 8         var array  = []; 
 9         var date = new Date();
10 
11         var fn = function() {
12         }
13         
14         var _null = null;
15         
16         assert.equal(‘[object Object]‘, Object.prototype.toString.call(obj));
17         assert.equal(‘[object Array]‘, Object.prototype.toString.call(array));
18         assert.equal(‘[object Date]‘, Object.prototype.toString.call(date));
19         assert.equal(‘[object Function]‘, Object.prototype.toString.call(fn));
20         
21         assert.equal(‘[object Null]‘, Object.prototype.toString.call(_null));
22     });
23   });
24 });

技术分享

javascript判断对象

原文:http://www.cnblogs.com/maduar/p/5738939.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!