get max i array javascript code example
Example 1: javascript largest number in array
const max = arr => Math.max(...arr);
Example 2: how to find max number in array javascript
const array1 = [1, 3, 2];
console.log(Math.max(...array1));
const max = arr => Math.max(...arr);
const array1 = [1, 3, 2];
console.log(Math.max(...array1));