Javascript - Show Date information

Akiii
Posted by Akiii under JavaScript category on | Points: 40 | Views : 1736
If you want to get the date information in javascript :-

<script type="text/javascript">
var todaydate = new Date();
alert(todaydate);
</script>




Thanks and Regards
Akiii

Comments or Responses

Login to post response