Underscore.JS isEmpty方法
语法
_.isEmpty(object)
isEmpty 方法用于检查对象是否为空,字符串的长度是否为0,或者数组是否为空。查看下面的示例 –
示例
var _ = require('underscore');
//Example 1: Check if object is empty
var result = _.isEmpty({});
console.log(result);
//Example 2: Check if string is empty
result = _.isEmpty("");
console.log(result);
//Example 3: Check if array is empty
result = _.isEmpty([]);
console.log(result);
请将上述程序保存在 tester.js . 运行以下命令以执行此程序。
命令
>node tester.js
输出
true
true
true