I am trying to output the price of products, but I would like to know the currencyCode for Angola in Angular
I hope there is some code that can identify the currency of Angola
This is the variable that receive the value:
cur2 = 10.263782;
Here i use the curency pipe:
{{cur2 | currency:'USD':true:'2.2-4'}}
Tis is the output:
$10.2638
I've tried it this way:
{{cur2 | currency:'AOA':true:'2.2-4'}}
this too:
{{cur2 | currency:'AKZ':true:'2.2-4'}}
{{cur2 | currency:'KZ':true:'2.2-4'}}
and it was unsuccessful