Underscore.js 对象 isEmpty 方法

返回 Underscore.js 比较对象


语法

_.isEmpty(object)

isEmpty() 如果 object 不包含任何值(没有可枚举的属性),返回 true。 对于字符串和类数组(array-like)对象,如果 length 属性为 0,那么_.isEmpty 检查返回 true。

示例

var _ = require('underscore');

//示例 1: 检查对象是否为空
var result = _.isEmpty({});
console.log(result);

//示例 2: 检查字符串是否为空
result = _.isEmpty("");
console.log(result);

//示例 3: 检查数组是否为空
result = _.isEmpty([]);
console.log(result);

上面示例运行结果如下

Underscore.js  对象 isEmpty 方法运行结果


返回 Underscore.js 比较对象

查看笔记

扫码一下
查看教程更方便