JavaScript Basics
JavaScript Objects
JavaScript Advanced
JS Useful References
JS Useful Resources
Selected Reading
© 2011 TutorialsPoint.COM
|
Javascript Date getUTCSeconds() Method
Description:
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.
Syntax:
Here is the detail of parameters:
Return Value:
Returns the seconds in the specified date according to universal time.
Example:
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:
To understand it in better way you can Try it yourself.
|
|
|