📜  Collect.js max() 方法

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

Collect.js max() 方法

max() 方法用于返回给定键的最大值。它接受一个集合并返回该集合中给定键的最大值。

句法:

collect(array).max(key)

参数: collect() 方法采用一个参数,该参数转换为集合,然后将 max() 方法应用于它。 max() 方法可以保存对象的键。

返回值:此方法返回给定键的最大值。

模块安装:使用以下命令从项目的根目录安装collect.js模块:

npm install collect.js

下面的示例说明了 collect.js 中的 max() 方法:

示例 1:文件名:index.js

Javascript
// Requiring the module
const collect = require('collect.js');
  
// Array with sample values
let arr = [10, 15, -20, -25, 40, 50, -70];
  
// Creating collection object
const collection = collect(arr);
  
// Function call
const max_val = collection.max();
  
// Printing the max value
console.log(max_val);


Javascript
// Requiring the module
const collect = require('collect.js');
  
// Array with sample values
let arr = [
  {
      name: 'Rahul',
      dob: '25-10-96',
      section: 'A',
      score: 98,
  },
  {
      name: 'Aditya',
      dob: '25-10-96',
      section: 'B',
      score: 96,
  },
  {
      name: 'Abhishek',
      dob: '16-08-94',
      section: 'A',
      score: 80
  }
];
  
// Creating collection object
const collection = collect(arr);
  
// Function call
const max_val = collection.max('score');
  
// Printing the max value
console.log(max_val);


使用以下命令运行index.js文件:

node index.js

输出:

50

示例 2:文件名:index.js

Javascript

// Requiring the module
const collect = require('collect.js');
  
// Array with sample values
let arr = [
  {
      name: 'Rahul',
      dob: '25-10-96',
      section: 'A',
      score: 98,
  },
  {
      name: 'Aditya',
      dob: '25-10-96',
      section: 'B',
      score: 96,
  },
  {
      name: 'Abhishek',
      dob: '16-08-94',
      section: 'A',
      score: 80
  }
];
  
// Creating collection object
const collection = collect(arr);
  
// Function call
const max_val = collection.max('score');
  
// Printing the max value
console.log(max_val);

使用以下命令运行index.js文件:

node index.js

输出:

98