Lodash - toLength 方法



语法

_.toLength(value)

将值转换为适用于类数组对象的长度的整数。

参数

  • value (*) − 要检查的值。

输出

  • (number) − 返回转换后的整数。

示例

var _ = require('lodash');

console.log(_.toLength(3.2));
console.log(_.toLength(Infinity));

将上述程序保存在 tester.js 中。运行以下命令来执行此程序。

命令

\>node tester.js

输出

3
4294967295
lodash_lang.htm
广告