javascript utilisant math.min () sur un tableau

function myArrayMin(arr) {
  return Math.min.apply(null, arr);
}
naly moslih