buscar valor maximo y mnimo array jQuery

var numbers = [1, 2, 3, 4];
Math.max(...numbers) // 4
Math.min(...numbers) // 1
Turlin