Underscore.js _.isNegative() 方法
这 _。 isNegative () 方法检查给定值是否为负值,相应地返回一个布尔值。
句法:
_.isNegative( value );
参数:
- value:要检查负值的给定值。
返回值:此方法返回一个布尔值(如果给定值为 Negative,则返回 true,否则返回 false)。
注意:这在普通 JavaScript 中不起作用,因为它需要安装 underscore.js contrib 库。 Underscore.js contrib 库可以使用npm install underscore-contrib 安装。
示例 1:
Javascript
// Defining underscore contrib variable
var _ = require('underscore-contrib');
// Checking
console.log("The Value is Negative : "
+ _.isNegative(-200020));
Javascript
// Defining underscore contrib variable
var _ = require('underscore-contrib');
// Checking
console.log("The Value is Negative : "
+ _.isNegative(1000000));
Javascript
// Defining underscore contrib variable
var _ = require('underscore-contrib');
// Checking
console.log("The Value is Negative : "
+ _.isNegative("-1"));
输出:
The Value is Negative : true
示例 2:
Javascript
// Defining underscore contrib variable
var _ = require('underscore-contrib');
// Checking
console.log("The Value is Negative : "
+ _.isNegative(1000000));
输出:
The Value is Negative : false
示例 3:对于包含负值的字符串,此方法返回 true。
Javascript
// Defining underscore contrib variable
var _ = require('underscore-contrib');
// Checking
console.log("The Value is Negative : "
+ _.isNegative("-1"));
输出:
The Value is Negative : true