Hi,
I know "npm install cldr-data --save" and I use that. But For Example, There are many currency in my array, But decimals not working. JSON Example.
let exampleJSON = [
{ Amount: 22155,56, "Currency": "TRY" },
{ Amount: 5000, "Currency": "EUR" },
{ Amount: 6000, "Currency": "USD" },
];
When I Run that code, View For Example
$22.155,56
$5.000
$6.000
But I want this
22,155.56 ₺
€ 5.000
$6.000