📜  Lodash _.max() 方法

📅  最后修改于: 2022-05-13 01:56:22.887000             🧑  作者: Mango

Lodash _.max() 方法

Lodash是一个基于 underscore.js 的 JavaScript 库。 Lodash 有助于处理数组、字符串、对象、数字等。

_.max()方法用于从数组中查找最大元素。如果数组为空,则返回 undefined。

句法:

_.max( array )

参数:此方法接受如上所述和如下所述的单个参数:

  • 数组:它是该方法迭代以获得最大元素的数组。

返回值:此方法返回数组中的最大元素。

示例 1:

Javascript
// Requiring the lodash library  
const _ = require("lodash");  
    
// Use of _.max() method 
let max_val = _.max([]); 
        
// Printing the output  
console.log(max_val);


Javascript
// Requiring the lodash library  
const _ = require("lodash");  
    
// Use of _.max() method 
let max_val = _.max([15, 7, 38, 46, 82]); 
        
// Printing the output  
console.log(max_val);


Javascript
// Requiring the lodash library  
const _ = require("lodash");  
    
// Use of _.max() method 
let max_val = _.max([-15, 7, 38, -46, -82]); 
        
// Printing the output  
console.log(max_val);


输出:

undefined

示例 2:

Javascript

// Requiring the lodash library  
const _ = require("lodash");  
    
// Use of _.max() method 
let max_val = _.max([15, 7, 38, 46, 82]); 
        
// Printing the output  
console.log(max_val);

输出:

82

示例 3:

Javascript

// Requiring the lodash library  
const _ = require("lodash");  
    
// Use of _.max() method 
let max_val = _.max([-15, 7, 38, -46, -82]); 
        
// Printing the output  
console.log(max_val);

输出:

38