Temporal.PlainDateTime.prototype.toPlainDate()

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

Syntax

js
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

undefined

Using toPlainDate()

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

Specifications

See also