Skip to content

Latest commit

 

History

History
24 lines (18 loc) · 584 Bytes

08-iso-weekday.md

File metadata and controls

24 lines (18 loc) · 584 Bytes
title version signature
ISO Day of Week
2.1.0
moment().isoWeekday(Number); moment().isoWeekday(); // Number

Gets or sets the ISO day of the week with 1 being Monday and 7 being Sunday.

As with moment#day, if the range is exceeded, it will bubble up to other weeks.

moment().isoWeekday(1); // Monday
moment().isoWeekday(7); // Sunday

A day name is also supported. This is parsed in the moment's current locale.

moment().isoWeekday("Sunday");
moment().isoWeekday("Monday");