You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
586 B
586 B
array-max
Get the maximum value in an array.
Installation
$ npm install --save ml-array-max
Usage
import max from 'ml-array-max';
const result = max([1, 5, 3, 2, 4]);
// 5