function getWeekDay(date) { var days = ['вс','пн','вт','ср','чт','пт','сб'] ; return days[ date.getDay() ]; }