jQuery temukan nilai tertinggi di array

var _array = [1,3,2];
Math.max.apply(Math,_array);
Weary Wildebeest