Firefox Tomorrow

javascript instance method

Temporal.PlainDateTime.prototype.toPlainDate()

View on MDN ↗

The toPlainDate() method of PlainDateTime instances returns a new PlainDate object representing the date part (year, month, day) of this date-time in the same calendar system.

Syntax

toPlainDate()

Parameters

None.

Return value

A new Temporal.PlainDate object representing the date part (year, month, day) of this date-time in the same calendar system.

Examples

Using toPlainDate()

const dt = Temporal.PlainDateTime.from("2021-07-01T12:34:56");
const date = dt.toPlainDate();
console.log(date.toString()); // '2021-07-01'

Specifications

SpecificationsStandards references are available on the canonical MDN page.

Browser compatibility

Browser compatibilityCompatibility data is available on the canonical MDN page.

See also