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 });
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】凌霞软件回馈社区,博客园 & 1Panel & Halo 联合会员上线
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步