Lodash - toFinite 方法
语法
_.toFinite(value)
将值转换为有限数字。
参数
value (*) − 要转换的值。
输出
(number) − 返回转换后的数字。
示例
var _ = require('lodash'); console.log(_.toFinite('3.2')); console.log(_.toFinite(Infinity));
将以上程序保存在 tester.js 中。运行以下命令执行此程序。
命令
\>node tester.js
输出
3.2 1.7976931348623157e+308
lodash_lang.htm
广告