当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Lodash _.isSafeInteger()用法及代码示例


Lodash是一个JavaScript库,可在underscore.js顶部使用。 Lodash帮助处理数组,字符串,对象,数字等。

_.isSafeInteger()方法用于查找给定值是否为安全整数。如果给定值是安全整数,则返回True。否则,它返回false。如果整数是IEEE-754双精度数,则该整数是安全的((2中的所有整数53-1)至-(253-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

相关用法


注:本文由纯净天空筛选整理自sanjoy_62大神的英文原创作品 Lodash _.isSafeInteger() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。