📜  Lodash _.isZero() 方法

📅  最后修改于: 2022-05-13 01:56:37.996000             🧑  作者: Mango

Lodash _.isZero() 方法

Lodash _.isZero() 方法检查给定值是否为零值并返回相应的布尔值。

句法:

_.isZero(value);

参数:此方法接受如上所述和如下所述的单个参数:

  • value:要检查零值的给定值。

返回值:如果给定值为零,则此方法返回布尔值 true,否则返回 false。

注意:这在普通 JavaScript 中不起作用,因为它需要安装 lodash.js contrib 库。 Lodash.js contrib 库可以使用以下命令安装:

npm install lodash-contrib

示例 1:

// Defining underscore lodash variable 
var _ = require('lodash-contrib'); 
  
// Checking for _.isZero() method 
console.log("The Value is Zero : " + _.isZero(0));
  
console.log("The Value is Zero : " + _.isZero(10));
  
console.log("The Value is Zero : " + _.isZero(true));

输出:

The Value is Zero : true
The Value is Zero : false
The Value is Zero : false

示例 2:

// Defining underscore lodash variable 
var _ = require('lodash-contrib'); 
  
// Checking for _.isZero() method 
console.log("The Value is Zero : " + _.isZero(false));
  
console.log("The Value is Zero : " + _.isZero("0"));
  
console.log("The Value is Zero : " + _.isZero({}));

输出:

The Value is Zero : false
The Value is Zero : false
The Value is Zero : false