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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。