I am trying to display a particular date in a certain format. E.g '24 September 2019'. How would I go about doing that using pipes in Angular?
Angular version 7
Thanks
I am trying to display a particular date in a certain format. E.g '24 September 2019'. How would I go about doing that using pipes in Angular?
Angular version 7
Thanks
It should be something like this, you could refer the documentation here
<div>{{ today | date : 'd MMMM yyyy' }} </div>