Skip to content

Instantly share code, notes, and snippets.

@ihorkatkov
Created July 25, 2015 10:55
Show Gist options
  • Save ihorkatkov/bdc98f25b22a6efb697a to your computer and use it in GitHub Desktop.
Save ihorkatkov/bdc98f25b22a6efb697a to your computer and use it in GitHub Desktop.
[JS ]Функцию getWeekDay(date), выводит текущий день недели в коротком формате 'пн', 'вт', … 'вс'.
function getWeekDay(date) {
var days = ['вс', 'пн', 'вт', 'ср', 'чт', 'пт', 'сб'];
var result;
result = days[date.getDay()];
return result;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment