Skip to content

$ceil

$ceil rounds the number UP to the nearest integer.

Usage

$ceil[number]

Parameters

FieldTypeDescriptionRequired
numbernumberThe number that will be rounded up.true

Example(s)

This will round 1.1 up to 2:

1
client.command({
2
name: "ceil",
3
code: `$ceil[1.1]`
4
});