Skip to content

$max

$max returns the biggest number from the provided numbers.

Usage

$max[...numbers]

Parameters

FieldTypeDescriptionRequired
numbersnumberThe numbers where the biggest number will be searched.true

Example(s)

This will return 91 since its the biggest number provided:

1
client.command({
2
name: "max",
3
code: `$max[17;42;91;5;63;28;55;10;77;36]`
4
});