Display weekday: name of the current day
/* Sunday=0, Monday=1 ... */
<html>
<body>
<script type="text/javascript">
var d=new Date()
var weekday=new Array("Sunday","Monday","Tuesday","Wednesday","Thursday",
"Friday","Saturday")
document.write("Today is " + weekday[d.getDay()])
</script>
</body>
</html>
Related examples in the same category