Math.max() function returns the largest of the zero or more numbers given as input parameters.
Math.max(1,10,100); // return 100
//Returns number with highest value.
var x = Math.max(-5, 12, 27);
console.log(x)//27
var arr = [1,2,3];
var max = arr.reduce(function(a, b) {
return Math.max(a, b);
});
// Math.max
finding maximum number
console.log(Math.max(1, 3, 2));
// expected output: 3
console.log(Math.max(-1, -3, -2));
// expected output: -1
const array1 = [1, 3, 2];
console.log(Math.max(...array1));
// expected output: 3
function myArrayMax(arr) {
let len = arr.length;
let max = -Infinity;
while (len--) {
if (arr[len] > max) {
max = arr[len];
}
}
return max;
}
if (penyakit === 'flu'){
let obatFlus = database.flu.obat
obatTermurah = ''
cheapest = Number.MAX_VALUE
for (let i = 0; i < obatFlus.length; i++){
let fluObat = obatFlus[i]
let obatName = fluObat[0]
let obatPrice = fluObat[1]
if(obatPrice < cheapest){
obatTermurah = obatName
cheapest = obatPrice
}
}
output = [obatTermurah, cheapest]
}
var arr = [1,2,3];
var max = Math.max(...arr);