Lodash _.isSafeInteger() 方法
Lodash是一个基于 underscore.js 的 JavaScript 库。 Lodash 有助于处理数组、字符串、对象、数字等。
_.isSafeInteger()方法用于查找给定值是否为安全整数。如果给定值是安全整数,则返回 True。否则,它返回 false。如果一个整数是 IEEE-754 双精度数(从 (2 53 – 1) 到 -(2 53 – 1) 的所有整数),且不是舍入不安全整数的结果,则该整数是安全的。
句法:
_.isSafeInteger(value)
参数:此方法接受如上所述和如下所述的单个参数:
value:此参数保存要检查的值。
返回值:如果该值是安全整数,则此方法返回 true,否则返回 false。
注意:这里使用 const _ = require('lodash') 将 lodash 库导入文件。
示例 1:
// Requiring the lodash library
const _ = require("lodash");
// Use of _.isSafeInteger() method
// Passing a mathematical pow function as an argument
console.log(_.isSafeInteger(Math.pow(2, 53) - 1));
// Passing a maximum value of a number as an argument
console.log(_.isSafeInteger(Infinity));
// Passing a minimum value of a number as an argument
console.log(_.isSafeInteger(Number.MIN_VALUE));
输出:
true
false
false
示例 2:
// Requiring the lodash library
const _ = require("lodash");
// Use of _.isSafeInteger() method
// Passing a positive number as an argument
console.log(_.isSafeInteger(123));
// Passing a negative number as an argument
console.log(_.isSafeInteger(-123));
// Passing a number(with decimals) as an argument
console.log(_.isSafeInteger(0.123));
输出:
true
true
false
注意:此代码在普通 JavaScript 中不起作用,因为它需要安装库 lodash。
参考: https://lodash.com/docs/4.17.15#isSafeInteger