Answers for "string to date pipe angular"

4

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
Posted by: Guest on May-11-2020
5

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>`
})
// Get the current date and time as a date-time value.
export class DatePipeComponent {
  today: number = Date.now();
}
Posted by: Guest on May-14-2020
0

how to convert date format using date pipe in angular

var datePipe = new DatePipe();
    this.setDob = datePipe.transform(userdate, 'dd/MM/yyyy');
Posted by: Guest on April-15-2021

Code answers related to "Javascript"

Browse Popular Code Answers by Language