max()方法用于返回给定键的最大值。它获取一个集合并返回给定键在该集合中存在的最大值。
用法:
collect(array).max(key)
参数:collect()方法采用一个参数,该参数将转换为集合,然后将max()方法应用于该参数。 max()方法可以保留对象的键。
返回值:此方法返回给定键的最大值。
模块安装:使用以下命令从项目的根目录安装collect.js模块:
npm install collect.js
以下示例说明了collect.js中的max()方法:
示例1:Filename: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);
使用以下命令运行index.js文件:
node index.js
输出:
50
示例2:Filename: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
相关用法
- JavaScript Math max()用法及代码示例
- Lodash _.max()用法及代码示例
- Fabric.js max()用法及代码示例
- HTML Meter max用法及代码示例
- HTML Input Range max用法及代码示例
- PHP max( )用法及代码示例
- d3.js d3.max()用法及代码示例
- CSS max-height用法及代码示例
- CSS max-width用法及代码示例
- HTML Progress max用法及代码示例
- HTML Input Datetime max用法及代码示例
- HTML Input Date max用法及代码示例
- HTML Input DatetimeLocal max用法及代码示例
- HTML Input Number max用法及代码示例
- HTML Input Week max用法及代码示例
- HTML Input Month max用法及代码示例
- HTML Input Time max用法及代码示例
- HTML <meter> max属性用法及代码示例
- HTML <progress> max属性用法及代码示例
注:本文由纯净天空筛选整理自AshokJaiswal大神的英文原创作品 Collect.js max() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。