Skip to content

Instantly share code, notes, and snippets.

@Falven
Created May 18, 2011 05:08
Show Gist options
  • Save Falven/978026 to your computer and use it in GitHub Desktop.
Save Falven/978026 to your computer and use it in GitHub Desktop.
function CustomDate() { }
CustomDate.prototype = new Date();
CustomDate.prototype.constructor = CustomDate;
CustomDate.prototype.getDay = function() {
return ["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"][super.getDay()];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment