javaScript с использованием math.max () на массиве

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