From d210e1e005fa466b4faacf2852aceae4a9960d44 Mon Sep 17 00:00:00 2001 From: ItsLuiggiYahoo <56616894+ItsLuiggiYahoo@users.noreply.github.com> Date: Fri, 9 Feb 2024 23:53:49 -0300 Subject: [PATCH] Add BRL Currency --- old.js | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/old.js b/old.js index 55219ce..f27fdb8 100755 --- a/old.js +++ b/old.js @@ -5,7 +5,8 @@ let CurrencyNames = [ "GBP", "MXN", "AUD", - "TRY" + "TRY", + "BRL" ] let Divides = [ @@ -26,6 +27,7 @@ let Currencies = [ 19.28, // MXN 1.42, // AUD 15.83, // TRY + 4.90 // BRL ], [ @@ -36,6 +38,7 @@ let Currencies = [ 96.44, // MXN 7.38, // AUD 80.39, // TRY + 24.71 // BRL ], [ @@ -46,6 +49,7 @@ let Currencies = [ 192.80, // MXN 14.76, // AUD 158.33, // TRY + 49.48 // BRL ], [ @@ -56,6 +60,7 @@ let Currencies = [ 475.60, // MXN 34.92, // AUD 396.66, // TRY + 123.76 // BRL ], [ @@ -66,6 +71,7 @@ let Currencies = [ 951.20, // MXN 73.84, // AUD 793.32, // TRY + 247.58 // BRL ], [ @@ -76,6 +82,7 @@ let Currencies = [ 1902.40, // MXN 147.68, // AUD 1586.64, // TRY + 495.20 // BRL ] ] @@ -94,4 +101,4 @@ Currencies.forEach((_value, _index) => { }) }); -console.log(JSON.stringify(UnitPrices)) \ No newline at end of file +console.log(JSON.stringify(UnitPrices))