highest number in js array 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
const max = arr => Math.max(...arr);
const array1 = [1, 3, 2];
Math.max(...array1);
// expected output: 3