diff --git a/1-js/05-data-types/10-date/3-weekday/task.md b/1-js/05-data-types/10-date/3-weekday/task.md index c2ae2168..ba62790c 100644 --- a/1-js/05-data-types/10-date/3-weekday/task.md +++ b/1-js/05-data-types/10-date/3-weekday/task.md @@ -4,7 +4,7 @@ importance: 5 # European weekday -European countries have days of week starting with monday (number 1), then tuesday (number 2) and till sunday (number 7). Write a function `getLocalDay(date)` that returns the "european" day of week for `date`. +European countries have days of week starting with Monday (number 1), then Tuesday (number 2) and till Sunday (number 7). Write a function `getLocalDay(date)` that returns the "European" day of week for `date`. ```js no-beautify let date = new Date(2012, 0, 3); // 3 Jan 2012