angular date pipe locale code example
Example 1: angular date pipe
<p>{{myDate | date: 'dd-MM-yyyy'}}</p>
myDate: Date = new Date();
Example 2: date format angular
content_copy
@Component({
selector: 'date-pipe',
template: `<div>
<p>Today is {{today | date}}</p>
<p>Or if you prefer, {{today | date:'fullDate'}}</p>
<p>The time is {{today | date:'h:mm a z'}}</p>
</div>`
})
export class DatePipeComponent {
today: number = Date.now();
}
Example 3: angular date pipi locale
<p>French date time is {{todayDate | date:'full':'+0200':'fr'}}</p>
Result:
French date time is mercredi 19 juin 2019 à 13:25:15 GMT+02:00