Methods
(static) invoke(array, method) → {Array}
Invokes method on all items in a given array
对给定数组中的所有项调用方法
Parameters:
Name | Type | Description |
---|---|---|
array |
Array | Array to iterate over要迭代的数组 |
method |
String | Name of a method to invoke要调用的方法的名称 |
Returns:
- Type
- Array
(static) max(array, byProperty) → {*}
Finds maximum value in array (not necessarily "first" one)
查找数组中的最大值(不一定是“第一个”)
Parameters:
Name | Type | Description |
---|---|---|
array |
Array | Array to iterate over要迭代的数组 |
byProperty |
String |
Returns:
- Type
- *
(static) min(array, byProperty) → {*}
Finds minimum value in array (not necessarily "first" one)
查找数组中的最小值(不一定是“第一个”)
Parameters:
Name | Type | Description |
---|---|---|
array |
Array | Array to iterate over要迭代的数组 |
byProperty |
String |
Returns:
- Type
- *