Home > database >  I get date time format in json. How i bind date only in angular
I get date time format in json. How i bind date only in angular

Time:03-04

I am getting this format JSON. How I am bind date only in angular8.

Date :"2014-12-10T14:20:33.369000Z"

CodePudding user response:

add this | date after the value in html

{{ Date | date }}

CodePudding user response:

Add date pipe,

 {{ Date | date }}
  • Related