javascript utilisant math.max () sur un tableau

function myArrayMax(arr) {
  return Math.max.apply(null, arr);
}
naly moslih