time.seconds() → number
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)
})
Couldn't find what you were looking for?
Contribute: edit this page or open an issue