find largest array javascript code example
Example 1: javascript largest number in array
const max = arr => Math.max(...arr);
Example 2: get largest number in array javascript
const array1 = [1, 3, 2];
Math.max(...array1);
// expected output: 3
Example 3: Find the maximum number of an array js
function getMaxOfArray(numArray) {
return Math.max.apply(null, numArray);
}
Example 4: how to find max number in array javascript
const array1 = [1, 3, 2];
console.log(Math.max(...array1));