From f2592999f3025eb77a6882ed2afe1dafc5c26027 Mon Sep 17 00:00:00 2001 From: Muhammed Mustafa Date: Thu, 26 May 2022 09:11:58 +0200 Subject: [PATCH] fix(curriculum): external floating link in JS (#46159) Co-authored-by: Sem Bauke <46919888+Sembauke@users.noreply.github.com> --- .../basic-javascript/create-decimal-numbers-with-javascript.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/basic-javascript/create-decimal-numbers-with-javascript.md b/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/basic-javascript/create-decimal-numbers-with-javascript.md index 0ad9f01fe03..05ab36176a5 100644 --- a/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/basic-javascript/create-decimal-numbers-with-javascript.md +++ b/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/basic-javascript/create-decimal-numbers-with-javascript.md @@ -11,7 +11,7 @@ dashedName: create-decimal-numbers-with-javascript We can store decimal numbers in variables too. Decimal numbers are sometimes referred to as floating point numbers or floats. -**Note:** Not all real numbers can accurately be represented in floating point. This can lead to rounding errors. [Details Here](https://en.wikipedia.org/wiki/Floating-point_arithmetic#Accuracy_problems). +**Note:** computers represent numbers with finite precision. That's why floating-point operations cannot precisely represent true arithmetic operations, and this leads to many surprising situations. if you are facing one of these issues, open topic in the [freeCodeCamp forum](https://forum.freecodecamp.org/). # --instructions--