The time.addSeconds() API adds the number of seconds that are passed to the date or time.
Section | |||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
Examples
...
Code Block | ||
---|---|---|
| ||
pjs.define("time", { type: 'time', initValue: '12:00:00'});
time = time.addSeconds(10);
return time;
//12:00:10 |
The time.addSeconds() API adds the number of seconds that are passed to the date or time.
Section | |||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
...
Code Block | ||
---|---|---|
| ||
pjs.define("time", { type: 'time', initValue: '12:00:00'});
time = time.addSeconds(10);
return time;
//12:00:10 |