Skip to content

Latest commit

 

History

History
34 lines (27 loc) · 443 Bytes

max.adoc

File metadata and controls

34 lines (27 loc) · 443 Bytes

max()

Important

Deprecated in 5.0.

Please use [func-math-max] instead.

max(number1 ,number2], ...) => void

Returns maximal value from a list of values.

Table 1. Parameters

numbers

Integer

Numbers separated by comma

Return

Maximal value of numbers.

Example
max(2, 3, 4, 8); //Will print "8"