Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR TYPESCRIPT

angular change how date looks

// use Angular DatePipe
{{ dateObj | date: 'format desired' }}

{{ dateObj | date:'shortDate' <or> 'M/d/yy' }}    // output is '1/25/21'
{{ dateObj | date:'mediumDate' <or> 'MMM d, y' }} // output is 'Jan 25, 2021'
{{ dateObj | date:'longDate' <or> 'MMMM d, y' }}  // output is 'January 25, 2021'
Source by angular.io #
 
PREVIOUS NEXT
Tagged: #angular #change #date
ADD COMMENT
Topic
Name
9+1 =