Reference FQL API reference Time add() time.add() Add a time interval to a Time. Signature add(amount: Number, unit: String) => Time Description Add a time interval to Time. Parameters Parameter Type Required Description amount Number true Number of units to add to the given time. unit String true Unit for the operation. Accepts one of the following: nanoseconds microseconds milliseconds seconds minutes hours days Return value Type Description Time New time with the added time interval, rounded to the nearest nanosecond. Examples Time('2099-02-10T12:00:00.000Z').add(19, 'minutes') Time("2099-02-10T12:19:00Z") Time.now() difference()