var result = [];var now = new Date();Date.prototype.getMonthDay = function(){ return (this.getMonth() + 1) + '.' + this.getDate();}result.push(now.getMonthDay());for(var i = 0 ; i < 6 ; i ++){ now.setDate(now.getDate() + 1); result.push(now.getMonthDay())}