Loading TOC...

xs.time.add

xs.time.add(
   value as xs.dayTimeDuration
) as xs.time

Summary

Adds the value of the hours, minutes and seconds components of an xs.dayTimeDuration to an xs.time value.

Parameters
value A day time duration.

Example

const v1 = xs.time('12:30:45-05:00');
const v2 = xs.dayTimeDuration("PT1H");
v1.add(v2);

Stack Overflow iconStack Overflow: Get the most useful answers to questions from the MarkLogic community, or ask your own question.