javascript min and max code example
Example 1: min and max javascript
Math.max(1, 2, 3) // 3
Math.min(1, 2, 3) // 1
var nums = [1, 2, 3]
Math.min(...nums) // 1
Math.max(...nums) // 3
Example 2: js return the highest and lowest 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