Lodash - max method



Syntax

_.max(array)

Computes the maximum value of array. If array is empty or falsey, undefined is returned.

Arguments

  • array (Array) − The array to iterate over.

Output

  • (*) − Returns the maximum value.

Example

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

Save the above program in tester.js. Run the following command to execute this program.

Command

\>node tester.js

Output

6
lodash_math.htm
Advertisements