r.floor(number) → number number.floor() → number
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);
Couldn't find what you were looking for?
© RethinkDB contributors
Licensed under the Creative Commons Attribution-ShareAlike 3.0 Unported License.
https://rethinkdb.com/api/javascript/floor/