JavaScript Date method: setUTCSeconds()
[this page | pdf | back links]
The setUTCSeconds() method (when applied
to a JavaScript
date) sets the
date variable’s UTC second (and optionally its millisecond).
It
has the following syntax with the following parameters:
date.setUTCSeconds(second,millisecond)
|
Parameter
|
Required / Optional
|
Description
|
|
second
|
Required
|
Integer representing seconds.
Typically, will be in range 0 – 59. However, e.g. 0 will result in last second
of previous minute, 60 will result in first second of next minute, etc.
|
|
millisecond
|
Optional
|
Integer representing
milliseconds. Typically, will be in range 0 – 999. However, e.g. 0 will
result in last millisecond of previous second, 1000 will result in first
millisecond of next second, etc.
|
NAVIGATION LINKS
Contents | Prev | Next | JavaScript Dates