Core JavaScript 1.5 Reference:Global Objects:Date:getUTCSeconds
From MDC
Contents |
[edit] Summary
Returns the seconds in the specified date according to universal time.
| Method of Date | |
| Implemented in: | JavaScript 1.3 |
| ECMA Version: | ECMA-262 |
[edit] Syntax
getUTCSeconds()
[edit] Parameters
None.
[edit] Description
The value returned by getUTCSeconds is an integer between 0 and 59.
[edit] Examples
[edit] Example: Using getUTCSeconds
The following example assigns the seconds portion of the current time to the variable sec.
var sec; Today = new Date(); sec = Today.getUTCSeconds();