📜  Lodash _.toInteger() 方法

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

Lodash _.toInteger() 方法

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

_.toInteger()方法用于将给定值转换为整数。

句法:

_.toInteger( value )

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

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

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

示例 1:

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


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


输出:

0
15

示例 2:

Javascript

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


输出:

0
1.7976931348623157e+308