Can anyone provide instructions on how to achieve the following format in Angular?
Expected:
20JAN2019
Currently, with the default Angular pipe, I am getting:
20/01/2019 when using {{slotEndDate | date:'dd/MM/yyyy'}}
Do I need to write a custom pipe to get the desired output?
Please share some examples or demo on StackBlitz.
Thank you