Skip to content

Instantly share code, notes, and snippets.

View benleah's full-sized avatar

Ben Leah benleah

  • Ben Leah Design
  • Tunbridge Wells
View GitHub Profile
(function(){
var month = {};
var current_date;
var month_html;
function Month(start_date, today_date) {
this.start_date = start_date;
this.today_month = today_date.getMonth();
this.today_day = today_date.getDate();
@benleah
benleah / test.js
Created May 29, 2016 13:41
Nothing to see here
(function(){
console.log('nothing to see here')
})();