My Profile
Gifts
Active Members
TodayLast 7 Days
more...
|
Date object's' getDate() method
This article explains about Date object getDate() method
getDate()
Returns the day of the month in a specified Date.
<html>
<head>
<script>
function f()
{
var date = new Date()
document.write(date.getDate()) }
</script>
</head>
<body>
<input type ="button" value ="Click to get today's day" onclick ="return f();" >
</body>
As getDate returns current day between 1 to 31 , the above code produces today's day as output.
Note that it returns date of client not server.
|
|