Back to top

ReQL command: floor

Command syntax

r.floor(number) → number

number.floor() → number

Description

Rounds the given value down, returning the largest integer value less than or equal to the given value (the value’s floor).

Example: Return the floor of 12.345.

r.floor(12.345).run(conn, callback);
// Result passed to callback
12.0

The floor command can also be chained after an expression.

Example: Return the floor of -12.345.

r.expr(-12.345).floor().run(conn, callback);
// Result passed to callback
-13.0

Example: Return Iron Man’s weight, rounded down with floor.

r.table('superheroes').get('ironman')('weight').floor().run(conn, callback);

Get more help

Couldn't find what you were looking for?