How to find the two biggest values in an array in JavaScirpt code example
Example 1: jsx return greatest number between two numbers
Math.max(5, 10);
Example 2: javascript set value to the largest value in an array
//get min/max value of arrays
function getArrayMax(array){
return Math.max.apply(null, array);