Copyright © tutorialspoint.com
Javascript date getUTCSeconds() method returns the seconds in the specified date according to universal time. The value returned by getUTCSeconds is an integer between 0 and 59.
Date.getUTCSeconds() |
Here is the detail of parameters:
NA
Returns the seconds in the specified date according to universal time.
The following example prints the seconds portion of the current time to the variable hrs.
<html>
<head>
<title>JavaScript getUTCSeconds Method</title>
</head>
<body>
<script type="text/javascript">
var dt = new Date();
document.write("getUTCSeconds() : " + dt.getUTCSeconds() );
</script>
</body>
</html>
|
This will produce following result:
getUTCSeconds() : 14 |
To understand it in better way you can Try it yourself.
Copyright © tutorialspoint.com