Lodash - min method



Syntax

_.min(array)

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

Arguments

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

Output

  • (*) − Returns the minimum value.

Example

var _ = require('lodash');
var values = [ 4, 3, 1, 5, 6];
var result = _.min(values);

console.log(result);

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

Command

\>node tester.js

Output

1
lodash_math.htm
Advertisements