JavaScript mit Math.max () in einem Array

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