How I can convert string (dd/MM/yyyy) format to dd/MM/yy in Angular template.
Code:
{{ stringDate | date: 'dd/MM/yy' }}
I am getting this error in console
Unable to convert "30/08/2019" into a date' for pipe 'DatePipe'
P.S - I don't want to create custom pipe.