📜  Lodash _.toSafeInteger() 方法

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

Lodash _.toSafeInteger() 方法

Lodash 是一个基于 underscore.js 的 JavaScript 库。 Lodash 有助于处理数组、字符串、对象、数字等。

_.toSafeInteger()方法用于将值转换为安全整数。

句法:

_.toSafeInteger( value )

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

  • value:此参数保存要转换的值。

返回值:此方法返回转换后的整数。

示例 1:

Javascript
// Requiring the lodash library  
const _ = require("lodash");  
      
// Use of _.toSafeInteger() method 
console.log(_.toSafeInteger(15.6)); 
console.log(_.toSafeInteger('15.6'));


Javascript
// Requiring the lodash library  
const _ = require("lodash");  
      
// Use of _.toSafeInteger() method 
console.log(_.toSafeInteger(Number.MIN_VALUE)); 
console.log(_.toSafeInteger(Number.MAX_VALUE));


输出:

15
15

示例 2:

Javascript

// Requiring the lodash library  
const _ = require("lodash");  
      
// Use of _.toSafeInteger() method 
console.log(_.toSafeInteger(Number.MIN_VALUE)); 
console.log(_.toSafeInteger(Number.MAX_VALUE));


输出:

0
9007199254740991