I'm using Angular 9
In one of my components, I'm using Currency Formatting as bellow:
import { formatCurrency } from '@angular/common';
formatCurrency(23456, 'de-DE', '$')
Here, if I pass de-DE as culture, I'm getting error as below:
Missing locale data for the locale "de-DE"
But, if I pass the culture as en-DE, it's working fine.
What's the issue here? Please help in this.