Skip to main content

PlainMonthDay

class Temporal.PlainMonthDay
unstable

A Temporal.PlainMonthDay represents a particular day on the calendar, but without a year. For example, it could be used to represent a yearly recurring event, like "Bastille Day is on the 14th of July."

See https://tc39.es/proposal-temporal/docs/monthday.html for more details.

Constructors Jump to heading

new
Jump to headingPlainMonthDay(
isoMonth: number,
isoDay: number,
calendar?: string,
referenceISOYear?: number,
)

Properties Jump to heading

readonly
Jump to heading[Symbol.toStringTag]: "Temporal.PlainMonthDay"
readonly
Jump to headingday: number

Static Methods Jump to heading

Back to top