angular date to string code example

Example 1: string to date angular

let dateString = '02/05/2020';  
let momentVariable = moment(dateString, 'MM-DD-YYYY');  
let stringvalue = momentVariable.format('YYYY-MM-DD');   
console.log(stringvalue); // outputs 2020-05-02

Example 2: ts change date format

import { DatePipe } from '@angular/common'
...
constructor(public datepipe: DatePipe){}
...
myFunction(){
 this.date=new Date();
 let latest_date =this.datepipe.transform(this.date, 'yyyy-MM-dd');
}

Example 3: pipe of date angular

content_copy
      
{{ dateObj | date }}               // output is 'Jun 15, 2015'
{{ dateObj | date:'medium' }}      // output is 'Jun 15, 2015, 9:43:11 PM'
{{ dateObj | date:'shortTime' }}   // output is '9:43 PM'
{{ dateObj | date:'mm:ss' }}       // output is '43:11'

Example 4: angular date pipe

// In Angular 
// Html
<p>{{myDate | date: 'dd-MM-yyyy'}}</p>
// Typescript
myDate: Date = new Date();

Example 5: show timestamp as yyyy mm dd html angular

import { DatePipe } from '@angular/common'
...
constructor(public datepipe: DatePipe){}
...
myFunction(){
 this.date=new Date();
 let latest_date =this.datepipe.transform(this.date, 'yyyy-MM-dd');
}

Example 6: show timestamp as yyyy mm dd html angular

import { DatePipe } from '@angular/common'
...
providers: [DatePipe]

Tags:

Html Example