Date formatter

To format dates, you need to use DateFormatter methods, for example:

const formattedStringOfDate = this.formatter.absoluteLongDate(this.adapter.today());

You can also use pipe:

<div>{{ adapter.today() | absoluteLongDate }}</div>

The pipe name (absoluteLongDate) corresponds to the name of the DateFormatter method. Examples of usage can be found here

Docs Feedback
If you have any questions or would like to contribute to writing the documentation, please create an issue in our GitHub repository.