CalendarDate

A CalendarDate represents a date without any time components in a specific calendar system.

installyarn add @internationalized/date
version3.5.1
usageimport {CalendarDate} from '@internationalized/date'

Introduction#


A CalendarDate object represents a date without any time components, in a specific calendar system such as the Gregorian calendar. Use this type to represent dates where the time is not important, such as a birthday or an all day calendar event. If you need to refer to a specific time, use a CalendarDateTime or ZonedDateTime instead.

A CalendarDate can be created using the constructor. This example creates a date that represents February 3rd, 2022 in the Gregorian calendar system.

import {CalendarDate} from '@internationalized/date';

let date = new CalendarDate(2022, 2, 3);
import {CalendarDate} from '@internationalized/date';

let date = new CalendarDate(2022, 2, 3);
import {CalendarDate} from '@internationalized/date';

let date =
  new CalendarDate(
    2022,
    2,
    3
  );

You can also create a CalendarDate by parsing an ISO 8601 formatted string using the parseDate function.

import {parseDate} from '@internationalized/date';

let date = parseDate('2022-02-03');
import {parseDate} from '@internationalized/date';

let date = parseDate('2022-02-03');
import {parseDate} from '@internationalized/date';

let date = parseDate(
  '2022-02-03'
);

Today's date can be retrieved using the today function. This requires a time zone identifier to be provided, which is used to determine the local date. The getLocalTimeZone function can be used to retrieve the user's current time zone.

import {today, getLocalTimeZone} from '@internationalized/date';

let nyDate = today('America/New_York');
let localDate = today(getLocalTimeZone());
import {
  getLocalTimeZone,
  today
} from '@internationalized/date';

let nyDate = today('America/New_York');
let localDate = today(getLocalTimeZone());
import {
  getLocalTimeZone,
  today
} from '@internationalized/date';

let nyDate = today(
  'America/New_York'
);
let localDate = today(
  getLocalTimeZone()
);

Once you have a CalendarDate object, you can read its properties, or manipulate it as described in the Manipulating dates section below. You can also convert it to an ISO 8601 string, native JavaScript Date object, or another representation. See the Conversion section below for details.

let date = new CalendarDate(2022, 2, 3);
date.toString(); // '2022-02-03'
let date = new CalendarDate(2022, 2, 3);
date.toString(); // '2022-02-03'
let date =
  new CalendarDate(
    2022,
    2,
    3
  );
date.toString(); // '2022-02-03'

Interface#


Properties

NameTypeDescription
calendarCalendarThe calendar system associated with this date, e.g. Gregorian.
erastringThe calendar era for this date, e.g. "BC" or "AD".
yearnumberThe year of this date within the era.
monthnumber

The month number within the year. Note that some calendar systems such as Hebrew may have a variable number of months per year. Therefore, month numbers may not always correspond to the same month names in different years.

daynumberThe day number within the month.

Methods

MethodDescription
constructor( (...args: any[] )): void
copy(): CalendarDateReturns a copy of this date.
add( (duration: DateDuration )): CalendarDateReturns a new CalendarDate with the given duration added to it.
subtract( (duration: DateDuration )): CalendarDateReturns a new CalendarDate with the given duration subtracted from it.
set( (fields: DateFields )): CalendarDateReturns a new CalendarDate with the given fields set to the provided values. Other fields will be constrained accordingly.
cycle( field: DateField, amount: number, options?: CycleOptions ): CalendarDate

Returns a new CalendarDate with the given field adjusted by a specified amount. When the resulting value reaches the limits of the field, it wraps around.

toDate( (timeZone: string )): DateConverts the date to a native JavaScript Date object, with the time set to midnight in the given time zone.
toString(): stringConverts the date to an ISO 8601 formatted string.
compare( (b: AnyCalendarDate )): numberCompares this date with another. A negative result indicates that this date is before the given one, and a positive date indicates that it is after.

Calendar systems#


By default, CalendarDate uses the Gregorian calendar system, but many other calendar systems that are used around the world are supported, such as Hebrew, Indian, Islamic, Buddhist, Ethiopic, and more. A Calendar instance can be passed to the CalendarDate constructor to represent dates in that calendar system.

This example creates a date in the Buddhist calendar system, which is equivalent to April 4th, 2020 in the Gregorian calendar.

import {BuddhistCalendar} from '@internationalized/date';

let date = new CalendarDate(new BuddhistCalendar(), 2563, 4, 30);
import {BuddhistCalendar} from '@internationalized/date';

let date = new CalendarDate(
  new BuddhistCalendar(),
  2563,
  4,
  30
);
import {BuddhistCalendar} from '@internationalized/date';

let date =
  new CalendarDate(
    new BuddhistCalendar(),
    2563,
    4,
    30
  );

See the Calendar docs for details about the supported calendars.

Eras#

Many calendar systems have only one era, or a modern era and a pre-modern era (e.g. AD and BC in the Gregorian calendar). However, other calendar systems may have many eras. For example, the Japanese calendar has eras for the reign of each Emperor. CalendarDate represents eras using string identifiers, which can be passed as an additional parameter to the constructor before the year. When eras are present, years are numbered starting from 1 within the era.

This example creates a date in the Japanese calendar system, which is equivalent to April 4th, 2020 in the Gregorian calendar.

import {JapaneseCalendar} from '@internationalized/date';

let date = new CalendarDate(new JapaneseCalendar(), 'heisei', 31, 4, 30)
import {JapaneseCalendar} from '@internationalized/date';

let date = new CalendarDate(
  new JapaneseCalendar(),
  'heisei',
  31,
  4,
  30
);
import {JapaneseCalendar} from '@internationalized/date';

let date =
  new CalendarDate(
    new JapaneseCalendar(),
    'heisei',
    31,
    4,
    30
  );

A list of valid era identifiers can be retrieved using the getEras method of a Calendar instance. If an era is not provided, the date is assumed to be in the current era.

Converting between calendars#

The toCalendar function can be used to convert a date from one calendar system to another.

This example converts a Gregorian date to a Hebrew one.

import {toCalendar, HebrewCalendar} from '@internationalized/date';

let gregorianDate = new CalendarDate(2020, 9, 19);
let hebrewDate = toCalendar(gregorianDate, new HebrewCalendar());
// => new CalendarDate(new HebrewCalendar(), 5781, 1, 1)
import {
  HebrewCalendar,
  toCalendar
} from '@internationalized/date';

let gregorianDate = new CalendarDate(2020, 9, 19);
let hebrewDate = toCalendar(
  gregorianDate,
  new HebrewCalendar()
);
// => new CalendarDate(new HebrewCalendar(), 5781, 1, 1)
import {
  HebrewCalendar,
  toCalendar
} from '@internationalized/date';

let gregorianDate =
  new CalendarDate(
    2020,
    9,
    19
  );
let hebrewDate =
  toCalendar(
    gregorianDate,
    new HebrewCalendar()
  );
// => new CalendarDate(new HebrewCalendar(), 5781, 1, 1)

Manipulating dates#


Adding and subtracting durations#

A DateDuration is an object that represents an amount of time, with fields such as years, months, and days. The add and subtract methods of CalendarDate objects can be used to adjust the date by the given duration. These methods return a new date, and do not mutate the original.

let date = new CalendarDate(2022, 2, 3);

date.add({weeks: 1}); // 2022-02-10
date.add({months: 1}); // 2022-03-03
date.add({years: 1, months: 1, days: 1}); // 2023-03-04

date.subtract({weeks: 1}); // 2022-01-27
date.subtract({months: 1}); // 2022-01-03
date.subtract({years: 1, months: 1, days: 1}); // 2021-01-02
let date = new CalendarDate(2022, 2, 3);

date.add({weeks: 1}); // 2022-02-10
date.add({months: 1}); // 2022-03-03
date.add({years: 1, months: 1, days: 1}); // 2023-03-04

date.subtract({weeks: 1}); // 2022-01-27
date.subtract({months: 1}); // 2022-01-03
date.subtract({years: 1, months: 1, days: 1}); // 2021-01-02
let date =
  new CalendarDate(
    2022,
    2,
    3
  );

date.add({ weeks: 1 }); // 2022-02-10
date.add({ months: 1 }); // 2022-03-03
date.add({
  years: 1,
  months: 1,
  days: 1
}); // 2023-03-04

date.subtract({
  weeks: 1
}); // 2022-01-27
date.subtract({
  months: 1
}); // 2022-01-03
date.subtract({
  years: 1,
  months: 1,
  days: 1
}); // 2021-01-02

Adding or subtracting a duration that goes beyond the limits of a particular field will cause the date to be balanced. For example, adding one day to August 31st results in September 1st. In addition, if adding or subtracting one field causes another to be invalid, the date will be constrained. For example, adding one month to August 31st results in September 30th because September 31st does not exist.

Parsing durations#

The parseDuration function can be used to convert a ISO 8601 duration string into a DateTimeDuration object. Negative values can be written by prefixing the entire string with a minus sign.

parseDuration('P3Y6M6W4D');
// => {years: 3, months: 6, weeks: 6, days: 4}

parseDuration('-P3Y6M6W4D');
// => {years: -3, months: -6, weeks: -6, days: -4}
parseDuration('P3Y6M6W4D');
// => {years: 3, months: 6, weeks: 6, days: 4}

parseDuration('-P3Y6M6W4D');
// => {years: -3, months: -6, weeks: -6, days: -4}
parseDuration(
  'P3Y6M6W4D'
);
// => {years: 3, months: 6, weeks: 6, days: 4}

parseDuration(
  '-P3Y6M6W4D'
);
// => {years: -3, months: -6, weeks: -6, days: -4}

Setting fields#

CalendarDate objects are immutable, which means their properties cannot be set directly. Instead, use the set method, and pass the fields to be modified. This will return a new CalendarDate with the updated values.

let date = new CalendarDate(2022, 2, 3);
date.set({day: 10}); // 2022-02-10
date.set({month: 5}); // 2022-05-03
date.set({year: 2023, month: 10, day: 16}); // 2023-10-16
let date = new CalendarDate(2022, 2, 3);
date.set({day: 10}); // 2022-02-10
date.set({month: 5}); // 2022-05-03
date.set({year: 2023, month: 10, day: 16}); // 2023-10-16
let date =
  new CalendarDate(
    2022,
    2,
    3
  );
date.set({ day: 10 }); // 2022-02-10
date.set({ month: 5 }); // 2022-05-03
date.set({
  year: 2023,
  month: 10,
  day: 16
}); // 2023-10-16

Setting a field to a value that is outside the valid range will cause it to be constrained. For example, setting the day to a value that is greater than the number of days in the month, will result in the last day of the month.

let date = new CalendarDate(2022, 2, 3);
date.set({day: 100}); // 2022-02-28
date.set({month: 20}); // 2022-12-03
let date = new CalendarDate(2022, 2, 3);
date.set({day: 100}); // 2022-02-28
date.set({month: 20}); // 2022-12-03
let date =
  new CalendarDate(
    2022,
    2,
    3
  );
date.set({ day: 100 }); // 2022-02-28
date.set({ month: 20 }); // 2022-12-03

Cycling fields#

The cycle method allows incrementing or decrementing a single field. It is similar to the add and subtract methods, but when the value reaches the minimum or maximum, it wraps around rather than affecting other fields.

let date = new CalendarDate(2022, 12, 31);
date.cycle('day', 1); // 2022-12-01
date.cycle('month', 1); // 2022-01-31

let date = new CalendarDate(2022, 1, 1);
date.cycle('day', -1); // 2022-01-31
date.cycle('month', -1); // 2022-12-01
let date = new CalendarDate(2022, 12, 31);
date.cycle('day', 1); // 2022-12-01
date.cycle('month', 1); // 2022-01-31

let date = new CalendarDate(2022, 1, 1);
date.cycle('day', -1); // 2022-01-31
date.cycle('month', -1); // 2022-12-01
let date =
  new CalendarDate(
    2022,
    12,
    31
  );
date.cycle('day', 1); // 2022-12-01
date.cycle('month', 1); // 2022-01-31

let date =
  new CalendarDate(
    2022,
    1,
    1
  );
date.cycle('day', -1); // 2022-01-31
date.cycle('month', -1); // 2022-12-01

The round option may also be passed, which causes the value to be rounded to increments of the given amount. For example, you could round the year to increments of 5.

let date = new CalendarDate(2022, 2, 3);

date.cycle('year', 5); // 2027-02-03
date.cycle('year', 5, {round: true}); // 2025-02-03

date.cycle('year', -5); // 2017-02-03
date.cycle('year', -5, {round: true}); // 2020-02-03
let date = new CalendarDate(2022, 2, 3);

date.cycle('year', 5); // 2027-02-03
date.cycle('year', 5, {round: true}); // 2025-02-03

date.cycle('year', -5); // 2017-02-03
date.cycle('year', -5, {round: true}); // 2020-02-03
let date =
  new CalendarDate(
    2022,
    2,
    3
  );

date.cycle('year', 5); // 2027-02-03
date.cycle('year', 5, {
  round: true
}); // 2025-02-03

date.cycle('year', -5); // 2017-02-03
date.cycle('year', -5, {
  round: true
}); // 2020-02-03

Note that if cycling a field causes another field to become invalid, the date is constrained. For example, adding one month to August 31st results in September 30th because September 31st does not exist.

Conversion#


To a string#

CalendarDate objects can be converted to an ISO 8601 formatted string using the toString method.

let date = new CalendarDate(2022, 2, 3);
date.toString(); // '2022-02-03'
let date = new CalendarDate(2022, 2, 3);
date.toString(); // '2022-02-03'
let date =
  new CalendarDate(
    2022,
    2,
    3
  );
date.toString(); // '2022-02-03'

To a native Date object#

A CalendarDate can be converted to a native JavaScript Date object using the toDate method. In general, the Date object should be avoided because it has many internationalization issues and other flaws. However, it is necessary to use some functionality like date formatting.

Because a Date represents an exact time, a time zone identifier is required to be passed to the toDate method. The time of the returned date will be set to midnight in that time zone. The getLocalTimeZone function can be used to retrieve the user's current time zone.

import {getLocalTimeZone} from '@internationalized/date';

let date = new CalendarDate(2022, 2, 3);
date.toDate('America/Los_Angeles'); // Thu Feb 03 2022 00:00:00 GMT-0800 (Pacific Standard Time)
date.toDate(getLocalTimeZone()); // e.g. Thu Feb 03 2022 00:00:00 GMT-0500 (Eastern Standard Time)
import {getLocalTimeZone} from '@internationalized/date';

let date = new CalendarDate(2022, 2, 3);
date.toDate('America/Los_Angeles'); // Thu Feb 03 2022 00:00:00 GMT-0800 (Pacific Standard Time)
date.toDate(getLocalTimeZone()); // e.g. Thu Feb 03 2022 00:00:00 GMT-0500 (Eastern Standard Time)
import {getLocalTimeZone} from '@internationalized/date';

let date =
  new CalendarDate(
    2022,
    2,
    3
  );
date.toDate(
  'America/Los_Angeles'
); // Thu Feb 03 2022 00:00:00 GMT-0800 (Pacific Standard Time)
date.toDate(
  getLocalTimeZone()
); // e.g. Thu Feb 03 2022 00:00:00 GMT-0500 (Eastern Standard Time)

To a date with time#

A CalendarDate can be converted to a CalendarDateTime or ZonedDateTime by providing an optional Time object and/or time zone identifier.

A CalendarDateTime represents a date with a time, but not in any specific time zone. Use this type to represent times that occur at the same local time regardless of the time zone, such as the time of New Years Eve fireworks which always occur at midnight. Most times are better stored as a ZonedDateTime.

Use the toCalendarDateTime function to convert a CalendarDate to a CalendarDateTime. By default, the time will be set to midnight. You can also pass a Time object to set the time to a specific value.

import {toCalendarDateTime, Time} from '@internationalized/date';

let date = new CalendarDate(2022, 2, 3);

toCalendarDateTime(date); // 2022-02-03T00:00:00
toCalendarDateTime(date, new Time(8, 30)); // 2022-02-03T08:30:00
import {
  Time,
  toCalendarDateTime
} from '@internationalized/date';

let date = new CalendarDate(2022, 2, 3);

toCalendarDateTime(date); // 2022-02-03T00:00:00
toCalendarDateTime(date, new Time(8, 30)); // 2022-02-03T08:30:00
import {
  Time,
  toCalendarDateTime
} from '@internationalized/date';

let date =
  new CalendarDate(
    2022,
    2,
    3
  );

toCalendarDateTime(date); // 2022-02-03T00:00:00
toCalendarDateTime(
  date,
  new Time(8, 30)
); // 2022-02-03T08:30:00

A ZonedDateTime represents a date with a time in a specific time zone. Use this type to represent an exact moment in time at a particular location on Earth.

Use the toZoned function to convert a CalendarDate to a ZonedDateTime. The time will be set to midnight in the given time zone. If you need to set a specific time, convert the CalendarDate to a CalendarDateTime first as described above, and pass the result to toZoned.

import {Time, toCalendarDateTime, toZoned} from '@internationalized/date';

let date = new CalendarDate(2022, 2, 3);
toZoned(date, 'America/Los_Angeles'); // 2021-02-03T00:00-07:00[America/Los_Angeles]

let dateTime = toCalendarDateTime(date, new Time(8, 30));
toZoned(dateTime, 'America/Los_Angeles'); // 2021-02-03T08:30-07:00[America/Los_Angeles]
import {
  Time,
  toCalendarDateTime,
  toZoned
} from '@internationalized/date';

let date = new CalendarDate(2022, 2, 3);
toZoned(date, 'America/Los_Angeles'); // 2021-02-03T00:00-07:00[America/Los_Angeles]

let dateTime = toCalendarDateTime(date, new Time(8, 30));
toZoned(dateTime, 'America/Los_Angeles'); // 2021-02-03T08:30-07:00[America/Los_Angeles]
import {
  Time,
  toCalendarDateTime,
  toZoned
} from '@internationalized/date';

let date =
  new CalendarDate(
    2022,
    2,
    3
  );
toZoned(
  date,
  'America/Los_Angeles'
); // 2021-02-03T00:00-07:00[America/Los_Angeles]

let dateTime =
  toCalendarDateTime(
    date,
    new Time(8, 30)
  );
toZoned(
  dateTime,
  'America/Los_Angeles'
); // 2021-02-03T08:30-07:00[America/Los_Angeles]

Queries#


Comparison#

CalendarDate objects can be compared either for full or partial equality, or in order to determine which date is before or after another.

The compare method can be used to determine if a date is before or after another. It returns a number less than zero if the first date is before the second, zero if the values are equal, or a number greater than zero if the first date is after the second.

let a = new CalendarDate(2022, 2, 3);
let b = new CalendarDate(2022, 3, 4);

a.compare(b) < 0; // true
b.compare(a) > 0; // true
let a = new CalendarDate(2022, 2, 3);
let b = new CalendarDate(2022, 3, 4);

a.compare(b) < 0; // true
b.compare(a) > 0; // true
let a = new CalendarDate(
  2022,
  2,
  3
);
let b = new CalendarDate(
  2022,
  3,
  4
);

a.compare(b) < 0; // true
b.compare(a) > 0; // true

In addition, the following functions can be used to perform a partial comparison. These functions accept dates in different calendar systems, and the second date is converted to the calendar system of the first date before comparison.

  • isSameYearReturns whether the given dates occur in the same year, using the calendar system of the first date.
  • isSameMonthReturns whether the given dates occur in the same month, using the calendar system of the first date.
  • isSameDayReturns whether the given dates occur on the same day, regardless of the time or calendar system.
  • isTodayReturns whether the date is today in the given time zone.
import {IslamicUmalquraCalendar, isSameMonth} from '@internationalized/date';

isSameMonth(new CalendarDate(2021, 4, 16), new CalendarDate(2021, 4, 30)); // true
isSameMonth(new CalendarDate(2021, 4, 16), new CalendarDate(2021, 8, 2)); // false
isSameMonth(
  new CalendarDate(2021, 4, 16),
  new CalendarDate(new IslamicUmalquraCalendar(), 1442, 9, 4)
); // true
import {
  IslamicUmalquraCalendar,
  isSameMonth
} from '@internationalized/date';

isSameMonth(
  new CalendarDate(2021, 4, 16),
  new CalendarDate(2021, 4, 30)
); // true
isSameMonth(
  new CalendarDate(2021, 4, 16),
  new CalendarDate(2021, 8, 2)
); // false
isSameMonth(
  new CalendarDate(2021, 4, 16),
  new CalendarDate(
    new IslamicUmalquraCalendar(),
    1442,
    9,
    4
  )
); // true
import {
  IslamicUmalquraCalendar,
  isSameMonth
} from '@internationalized/date';

isSameMonth(
  new CalendarDate(
    2021,
    4,
    16
  ),
  new CalendarDate(
    2021,
    4,
    30
  )
); // true
isSameMonth(
  new CalendarDate(
    2021,
    4,
    16
  ),
  new CalendarDate(
    2021,
    8,
    2
  )
); // false
isSameMonth(
  new CalendarDate(
    2021,
    4,
    16
  ),
  new CalendarDate(
    new IslamicUmalquraCalendar(),
    1442,
    9,
    4
  )
); // true

A similar set of functions is also available that does not convert between calendar systems and requires the calendars to be equal.

  • isEqualYearReturns whether the given dates occur in the same year, and are of the same calendar system.
  • isEqualMonthReturns whether the given dates occur in the same month, and are of the same calendar system.
  • isEqualDayReturns whether the given dates occur on the same day, and are of the same calendar system.
import {isEqualMonth, IslamicUmalquraCalendar} from '@internationalized/date';

isEqualMonth(new CalendarDate(2021, 4, 16), new CalendarDate(2021, 4, 30)); // true
isEqualMonth(new CalendarDate(2021, 4, 16), new CalendarDate(2021, 8, 2)); // false
isEqualMonth(
  new CalendarDate(2021, 4, 16),
  new CalendarDate(new IslamicUmalquraCalendar(), 1442, 9, 4)
); // false
import {
  isEqualMonth,
  IslamicUmalquraCalendar
} from '@internationalized/date';

isEqualMonth(
  new CalendarDate(2021, 4, 16),
  new CalendarDate(2021, 4, 30)
); // true
isEqualMonth(
  new CalendarDate(2021, 4, 16),
  new CalendarDate(2021, 8, 2)
); // false
isEqualMonth(
  new CalendarDate(2021, 4, 16),
  new CalendarDate(
    new IslamicUmalquraCalendar(),
    1442,
    9,
    4
  )
); // false
import {
  isEqualMonth,
  IslamicUmalquraCalendar
} from '@internationalized/date';

isEqualMonth(
  new CalendarDate(
    2021,
    4,
    16
  ),
  new CalendarDate(
    2021,
    4,
    30
  )
); // true
isEqualMonth(
  new CalendarDate(
    2021,
    4,
    16
  ),
  new CalendarDate(
    2021,
    8,
    2
  )
); // false
isEqualMonth(
  new CalendarDate(
    2021,
    4,
    16
  ),
  new CalendarDate(
    new IslamicUmalquraCalendar(),
    1442,
    9,
    4
  )
); // false

Start and end dates#

The following functions can be used to find the start or end dates of a particular unit of time.

  • startOfYearReturns the first day of the year for the given date.
  • endOfYearReturns the last day of the year for the given date.
  • startOfMonthReturns the first date of the month for the given date.
  • endOfMonthReturns the last date of the month for the given date.
  • startOfWeekReturns the first date of the week for the given date and locale.
  • endOfWeekReturns the last date of the week for the given date and locale.

Note that startOfWeek and endOfWeek require a locale string to be provided. This is because the first day of the week changes depending on the locale. For example, in the United States, the first day of the week is on Sunday, but in France it is on Monday.

import {startOfYear, startOfMonth, startOfWeek} from '@internationalized/date';

let date = new CalendarDate(2022, 2, 3);

startOfYear(date); // 2022-01-01
startOfMonth(date); // 2022-02-01
startOfWeek(date, 'en-US'); // 2022-01-30
startOfWeek(date, 'fr-FR'); // 2022-01-31
import {
  startOfMonth,
  startOfWeek,
  startOfYear
} from '@internationalized/date';

let date = new CalendarDate(2022, 2, 3);

startOfYear(date); // 2022-01-01
startOfMonth(date); // 2022-02-01
startOfWeek(date, 'en-US'); // 2022-01-30
startOfWeek(date, 'fr-FR'); // 2022-01-31
import {
  startOfMonth,
  startOfWeek,
  startOfYear
} from '@internationalized/date';

let date =
  new CalendarDate(
    2022,
    2,
    3
  );

startOfYear(date); // 2022-01-01
startOfMonth(date); // 2022-02-01
startOfWeek(
  date,
  'en-US'
); // 2022-01-30
startOfWeek(
  date,
  'fr-FR'
); // 2022-01-31

Day of week#

The getDayOfWeek function returns the day of the week for the given date and locale. Days are numbered from zero to six, where zero is the first day of the week in the given locale. For example, in the United States, the first day of the week is Sunday, but in France it is Monday.

import {getDayOfWeek} from '@internationalized/date';

let date = new CalendarDate(2022, 2, 6); // a Sunday

getDayOfWeek(date, 'en-US'); // 0
getDayOfWeek(date, 'fr-FR'); // 6
import {getDayOfWeek} from '@internationalized/date';

let date = new CalendarDate(2022, 2, 6); // a Sunday

getDayOfWeek(date, 'en-US'); // 0
getDayOfWeek(date, 'fr-FR'); // 6
import {getDayOfWeek} from '@internationalized/date';

let date =
  new CalendarDate(
    2022,
    2,
    6
  ); // a Sunday

getDayOfWeek(
  date,
  'en-US'
); // 0
getDayOfWeek(
  date,
  'fr-FR'
); // 6

Weekdays and weekends#

The isWeekday and isWeekend functions can be used to determine if a date is weekday or weekend respectively. This depends on the locale. For example, in the United States, weekends are Saturday and Sunday, but in Israel they are Friday and Saturday.

import {isWeekday, isWeekend} from '@internationalized/date';

let date = new CalendarDate(2022, 2, 6); // a Sunday

isWeekday(date, 'en-US'); // false
isWeekday(date, 'he-IL'); // true

isWeekend(date, 'en-US'); // true
isWeekend(date, 'he-IL'); // false
import {
  isWeekday,
  isWeekend
} from '@internationalized/date';

let date = new CalendarDate(2022, 2, 6); // a Sunday

isWeekday(date, 'en-US'); // false
isWeekday(date, 'he-IL'); // true

isWeekend(date, 'en-US'); // true
isWeekend(date, 'he-IL'); // false
import {
  isWeekday,
  isWeekend
} from '@internationalized/date';

let date =
  new CalendarDate(
    2022,
    2,
    6
  ); // a Sunday

isWeekday(date, 'en-US'); // false
isWeekday(date, 'he-IL'); // true

isWeekend(date, 'en-US'); // true
isWeekend(date, 'he-IL'); // false

Weeks in month#

The getWeeksInMonth function returns the number of weeks in the given month. This depends on the number of days in the month, what day of the week the month starts on, and the given locale. For example, in the United States, the first day of the week is Sunday, but in France it is Monday.

import {getWeeksInMonth} from '@internationalized/date';

let date = new CalendarDate(2021, 1, 1);

getWeeksInMonth(date, 'en-US'); // 6
getWeeksInMonth(date, 'fr-FR'); // 5
import {getWeeksInMonth} from '@internationalized/date';

let date = new CalendarDate(2021, 1, 1);

getWeeksInMonth(date, 'en-US'); // 6
getWeeksInMonth(date, 'fr-FR'); // 5
import {getWeeksInMonth} from '@internationalized/date';

let date =
  new CalendarDate(
    2021,
    1,
    1
  );

getWeeksInMonth(
  date,
  'en-US'
); // 6
getWeeksInMonth(
  date,
  'fr-FR'
); // 5