W3cubDocs

/RethinkDB JavaScript

ReQL command: seconds

Command syntax

time.seconds() → number

Description

Return the seconds in a time object as a number between 0 and 59.999 (double precision).

Example: Return the post submitted during the first 30 seconds of every minute.

r.table("posts").filter(function(post) {
    return post("date").seconds().lt(30)
})

Related commands

Get more help

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/seconds/