Lodash _.min() method is used to find the minimum element from the array. If the array is empty then undefined is returned.
Syntax:
_.min(array);Parameters:
- array: It is the array that the method iterates over to get the minimum element.
Return Value:
This method returns the minimum element from the array.
Example 1: In this example, we are getting the undefined value as the given array is empty so the lodash _min() method returns the undefined value.
// Requiring the lodash library
const _ = require("lodash");
// Use of _.min() method
let min_val = _.min([]);
// Printing the output
console.log(min_val);
Output:
undefinedExample 2: In this example, we are getting the minimum value of the given array by the use of the lodash _min() method.
// Requiring the lodash library
const _ = require("lodash");
// Use of _.min() method
let min_val = _.min([15, 7, 38, 46, 82]);
// Printing the output
console.log(min_val);
Output:
7
Example 3: In this example, we are getting the minimum value of the given array by the use of the lodash _min() method.
// Requiring the lodash library
const _ = require("lodash");
// Use of _.min() method
let min_val = _.min([-15, 7, 38, -46, -82]);
// Printing the output
console.log(min_val);
Output:
-82