The objects of this server class store duration as a date and time fromĀ January 1, 1970, 00:00:00.
Summarizes two SimpleDuration objects and returns the result.
Parameter(s):
Name | Type |
---|---|
duration | SimpleDuration |
Return:
Type | Description |
---|---|
SimpleDuration |
Example:
var simple_duration = new SimpleDuration("2 10:00:00"); var simple_duration_1 = new SimpleDuration("01:00:00"); var result = simple_duration.add(simple_duration_1); ss.info( result.getDisplayValue() ); |