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

Suggestions for improvement
If you found a mistake or want to improve the article, create an issue on GitHub.