Skip to content

max

max(array) → number · Math

Find the maximum value in a numeric array.

  • array (required): array of numbers
utlx
{
  highest: max([3, 1, 4, 1, 5, 9])          // 9
}

Released under AGPL-3.0.