Core JavaScript 1.5 Reference:Global Objects:Date:getSeconds
From MDC
(Redirected from Core JavaScript 1.5 Reference:Objects:Date:getSeconds)
Contents |
[edit] Summary
Returns the seconds in the specified date according to local time.
| Method of Date | |
| Implemented in: | JavaScript 1.0, NES 2.0 |
| ECMA Version: | ECMA-262 |
[edit] Syntax
getSeconds()
[edit] Parameters
None.
[edit] Description
The value returned by getSeconds is an integer between 0 and 59.
[edit] Examples
[edit] Example: Using getSeconds
The second statement below assigns the value 30 to the variable secs, based on the value of the Date object Xmas95.
Xmas95 = new Date("December 25, 1995 23:15:30")
secs = Xmas95.getSeconds()