javascript find max code example
Example 1: javascript get array min and max
function getArrayMax(array){
return Math.max.apply(null, array);
}
function getArrayMin(array){
return Math.min.apply(null, array);
}
var ages=[11, 54, 32, 92];
var maxAge=getArrayMax(ages);
var minAge=getArrayMin(ages);
Example 2: get largest number in array javascript
const array1 = [1, 3, 2];
Math.max(...array1);
Example 3: max method in js
finding maximum number
console.log(Math.max(1, 3, 2));
console.log(Math.max(-1, -3, -2));
const array1 = [1, 3, 2];
console.log(Math.max(...array1));
Example 4: How to get maximum value in Javascript
let x = Math.max(1,3,45,59,698);
console.log(x);