Skip to content

Instantly share code, notes, and snippets.

@jonathanpike
Created December 3, 2015 14:57
Show Gist options
  • Save jonathanpike/880ee251720c7e4662ae to your computer and use it in GitHub Desktop.
Save jonathanpike/880ee251720c7e4662ae to your computer and use it in GitHub Desktop.
window.onLoad = function() {
function dayOfWeek() {
var date = new Date();
var days = ["Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday"];
return days[date.getDay()];
}
document.getElementById("day").innerHTML = dayOfWeek();
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment