lodash - max 方法



语法

_.max(array)

计算数组的最大值。如果数组为空或假值,则返回未定义。

参数

  • array (数组) - 要遍历的数组。

输出

  • (*) - 返回最大值。

示例

var _ = require('lodash');
 
console.log(_.max([ 4, 6, 1, 5]));

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

命令

\>node tester.js

输出

6
lodash_math.htm
广告