Return the maximum value from an array of numbers.
max([1, 2, 3]); // returns 3max([10]); // returns 10max([]); // returns null for empty arrays Copy
max([1, 2, 3]); // returns 3max([10]); // returns 10max([]); // returns null for empty arrays
0.2.0
Return the maximum value from an array of numbers.