Test Check
Test Check

Reputation: 119

Angular date display format

<td ng-bind="Order.created_at"></td>

Displaying output as 2019-12-08 10:34:06

how to show it as 08-12-2019 10:34:06

Upvotes: 0

Views: 448

Answers (2)

Arunkumar Ramasamy
Arunkumar Ramasamy

Reputation: 781

In angular 2 and above use default date pipe like below one.

<p>{{ Order.created_at | date:'dd-MM-yyyy hh:mm:ss'}}</p>

Upvotes: 0

Spandan
Spandan

Reputation: 259

<td ng-bind="Order.created_at | date:'MM-dd-yyyy HH:mm:ss'"></td>

Upvotes: 3

Related Questions