📜  Underscore.js _.isZero() 方法

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

Underscore.js _.isZero() 方法

这 _。 isZero () 方法检查给定值是否为零值,相应地返回一个布尔值。  

句法:

_.isZero(value);

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

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

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

注意:这在普通 JavaScript 中不起作用,因为它需要安装 underscore.js contrib 库。

underscore.js contrib 库可以使用npm install underscore-contrib –save 安装。

示例 1:

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


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


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


输出:

The Value is Zero : true

示例 2:

Javascript

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

输出:

The Value is Zero : false

示例 3:对于包含零的字符串,这将返回 false

Javascript

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

输出:

The Value is Zero : false