Lodash _.isInteger() 方法
Lodash _.isInteger() 方法检查给定值是否为整数并返回相应的布尔值。
句法:
_.isInteger( value )
参数:此方法接受上面提到的单个参数,如下所述:
- value:此参数保存需要检查的值是否为 Integer。
返回值:此方法返回一个布尔值(如果给定值是整数,则返回 true,否则返回 false)。
示例 1:
Javascript
// Defining Lodash variable
const _ = require('lodash');
// Checking for Integer
console.log("The Value is Integer : "
+ _.isInteger(100));
Javascript
// Defining Lodash variable
const _ = require('lodash');
// Checking for Integer
console.log("The Value is Integer : "
+ _.isInteger("10"));
Javascript
// Defining Lodash variable
const _ = require('lodash');
// Checking for Integer
console.log("The Value is Integer : "
+ _.isInteger(Infinity));
输出:
The Value is Integer : true
示例 2:对于包含整数的字符串,此方法返回 false。
Javascript
// Defining Lodash variable
const _ = require('lodash');
// Checking for Integer
console.log("The Value is Integer : "
+ _.isInteger("10"));
输出:
The Value is Integer : false
示例 3:对于 Infinity 值,它返回 false。
Javascript
// Defining Lodash variable
const _ = require('lodash');
// Checking for Integer
console.log("The Value is Integer : "
+ _.isInteger(Infinity));
输出:
The Value is Integer : false