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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。