setUTCSeconds()
Date
instance method
JS Home <<
JS Reference <<
Date <<
setUTCSeconds()
Description
Sets the UTC second of the minute (0-59) for the specified date.
Syntax
Signature | Description |
---|---|
aDate.setUTCSeconds(secondsInt[, millisecondsInt]) | Sets the UTC second of the minute (0-59) for the specified date. |
Parameters
Parameter | Description |
---|---|
secondsInt | An integer in the range 0-59. |
millisecondsInt | An integer in the range 0-999.
|
For specified values outside the ranges above the setUTCSeconds() method will try and set the date accordingly. |
Examples
The code below shows an example of the setUTCSeconds()
method of Date
.
// Create a Date instance for the current date and time.
var todaysDate = new Date();
alert(todaysDate);
// Set UTC seconds.
todaysDate.setUTCSeconds(59);
alert(todaysDate + ' - Seconds set to 59');
Related Tutorials
JavaScript Intermediate Tutorials - Lesson 2 - Dates and Times