how to find min and max in javascript code example
Example 1: min array javascript
const nums = [1, 2, 3]
Math.min(...nums) // 1
Math.max(...nums) // 3
Example 2: find max and min value in array javascript
var numbers = [1, 2, 3, 4];
Math.max(...numbers) // 4
Math.min(...numbers) // 1