📜  Lodash _.toLength() 方法

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

Lodash _.toLength() 方法

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

_.toLength()方法用于将给定值转换为适合用作类数组对象的长度的整数。

句法:

_.toLength( value )

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

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

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

示例 1:

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


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


输出:

15
15

示例 2:

Javascript

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


输出:

0
4294967295