Min
  • 27 May 2022
  • 1 Minute to read
  • Dark
    Light
  • PDF

Min

  • Dark
    Light
  • PDF

Article Summary

Given a list of numbers, returns the smallest number in the list.

Function signature

MIN(values: Array) => Number
ParameterDescription
ValuesList of numeric values

Examples

FormulaReturn value
MIN([100, 3, 20])3
MIN([])null

Was this article helpful?

What's Next