From ffdbbcc06de70d1217bce07f5cf17304cfb08bfd Mon Sep 17 00:00:00 2001 From: Lior Chamla Date: Tue, 5 Sep 2023 23:52:33 +0000 Subject: [PATCH] fix(calculation): improved accuracy of the calculation --- index.html | 6 +++--- script.js | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/index.html b/index.html index 918691d..35acca5 100644 --- a/index.html +++ b/index.html @@ -8,8 +8,8 @@

- Avec une fortune de - 214 000 000 000 €, + Avec un revenu de + 2 900 000 000 € cette année,
Bernard Arnault donne 10 millions @@ -17,7 +17,7 @@



- Avec votre patrimoine de + Avec votre revenu annuel de  €,
c'est comme si vous donniez diff --git a/script.js b/script.js index 489f701..bb291e5 100644 --- a/script.js +++ b/script.js @@ -38,7 +38,7 @@ document.addEventListener("DOMContentLoaded", () => { yourNetWorth.addEventListener("input", (e) => { const yourNetWorthValue = +e.target.value; - const equivalentDonation = yourNetWorthValue / 21400; + const equivalentDonation = yourNetWorthValue / 290; donationAmount.innerHTML = `${parseFloat( equivalentDonation.toFixed(2) ).toLocaleString()} €`;