take the biggest item in an array js code example
Example 1: Find the maximum number of an array js
function getMaxOfArray(numArray) {
return Math.max.apply(null, numArray);
}
Example 2: how to find max number in array javascript
const array1 = [1, 3, 2];
console.log(Math.max(...array1));