Max
- 27 May 2022
- 1 Minute to read
- DarkLight
- PDF
Max
- Updated on 27 May 2022
- 1 Minute to read
- DarkLight
- PDF
Article Summary
Given a list of numbers, returns the highest number in the list.
Function signature
MAX(values: Array) => Number
Parameter | Description |
---|---|
Values | List of numeric values |
Examples
Formula | Return value |
---|---|
MAX([100, 3, 20]) | 100 |
MAX([]) | null |
Was this article helpful?