FREE Web Template Download
HTML CSS JAVASCRIPT SQL PHP BOOTSTRAP JQUERY ANGULARJS TUTORIALS REFERENCES EXAMPLES Blog
 

JavaScript getUTCSeconds() Method

Date Object Reference JavaScript Date Object

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

Examples

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 »

Date Object Reference JavaScript Date Object