JavaScript getUTCSeconds() Method
Example
Return the seconds, according to universal time:
var d = new Date();
var n = d.getUTCSeconds();
Try it yourself »
More "Try it Yourself" examples below.
Definition and Usage
The getUTCSeconds() method returns the seconds (from 0 to 59) of the specified date and time, according to universal time.
The UTC methods calculate their date assuming that the date object is of local time and date.
Tip: The Universal Coordinated Time (UTC) is the time set by the World Time Standard.
Note: UTC time is the same as GMT time.
Browser Support
| Method | |||||
|---|---|---|---|---|---|
| getUTCSeconds() | Yes | Yes | Yes | Yes | Yes | 
Syntax
Date.getUTCSeconds()
Parameters
| None | 
Technical Details
| Return Value: | A Number, from 0-59, representing the seconds | 
|---|---|
| JavaScript Version: | 1.3 | 
 
More Examples
Example
Using getUTCHours(), getUTCMinutes(), and getUTCSeconds() to display the universal time:
	function addZero(i) {
    if (i < 10) {
        
	i = "0" + i;
    }
    return i;
}
	
function myFunction() {
    var d = new Date();
    
	var x = document.getElementById("demo");
    var h = 
	addZero(d.getUTCHours());
    var m = 
	addZero(d.getUTCMinutes());
    var s = 
	addZero(d.getUTCSeconds());
    x.innerHTML = h + ":" + m 
	+ ":" + s;
}
Try it yourself »
 JavaScript Date Object
 JavaScript Date Object

