Skip to content

Instantly share code, notes, and snippets.

@bondarewicz
Created February 19, 2013 12:21
Show Gist options
  • Save bondarewicz/4985386 to your computer and use it in GitHub Desktop.
Save bondarewicz/4985386 to your computer and use it in GitHub Desktop.
JS: Greeting
<!--
// Array of day names
var dayNames = new Array("Sunday","Monday","Tuesday","Wednesday",
"Thursday","Friday","Saturday");
var now = new Date();
document.write("Happy " + dayNames[now.getDay()] + ".");
// -->
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment