min()方法用於返回給定數組或集合中的最小元素。可以使用鍵作為參數來指定該方法,以便僅考慮集合中該鍵的值,並從這些值中找到最小元素。
用法:
collect(array).min(key)
參數:collect()方法采用一個參數,該參數將轉換為集合,然後將min()方法應用於該參數。 min()方法將 key 保留為參數。
返回值:此方法返回給定集合中的最小元素。
下麵的示例說明了collect.js中的min()方法:
範例1:
Javascript
const collect = require('collect.js');
let arr = [10, 15, -20, -25, 40, 50, -70];
const collection = collect(arr);
const min_val = collection.min();
console.log(min_val);
輸出:
-70
範例2:
Javascript
const collect = require('collect.js');
let obj = [
{
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
}
];
const collection = collect(obj);
const min_score = collection.min('score');
console.log(min_score);
輸出:
80
相關用法
- JavaScript Math min()用法及代碼示例
- Lodash _.min()用法及代碼示例
- Fabric.js min()用法及代碼示例
- PHP min( )用法及代碼示例
- underscore.js min()用法及代碼示例
- d3.js d3.min()用法及代碼示例
- CSS min-height用法及代碼示例
- CSS min-width用法及代碼示例
- HTML Input Datetime min用法及代碼示例
- HTML Input Date min用法及代碼示例
- HTML Input Number min用法及代碼示例
- HTML Input Month min用法及代碼示例
- HTML Input Week min用法及代碼示例
- HTML Input Time min用法及代碼示例
- HTML Input Range min用法及代碼示例
- p5.js min()用法及代碼示例
- HTML Meter min用法及代碼示例
- HTML <input> min屬性用法及代碼示例
注:本文由純淨天空篩選整理自AshokJaiswal大神的英文原創作品 Collect.js min() Method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。