From 287d2b4e29e93dcbee16dcd0d4eacf771c12a3a8 Mon Sep 17 00:00:00 2001 From: Kumari Moni <164460816+Kumari040@users.noreply.github.com> Date: Wed, 24 Dec 2025 22:59:54 +0530 Subject: [PATCH] fix(curriculum): convert numbers to strings in lecture-working-with-numbers-and-common-number-methods (#64886) --- .../673280a1c29d0a0b17316e56.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/curriculum/challenges/english/blocks/lecture-working-with-numbers-and-common-number-methods/673280a1c29d0a0b17316e56.md b/curriculum/challenges/english/blocks/lecture-working-with-numbers-and-common-number-methods/673280a1c29d0a0b17316e56.md index f2e0329d338..67057f29c9b 100644 --- a/curriculum/challenges/english/blocks/lecture-working-with-numbers-and-common-number-methods/673280a1c29d0a0b17316e56.md +++ b/curriculum/challenges/english/blocks/lecture-working-with-numbers-and-common-number-methods/673280a1c29d0a0b17316e56.md @@ -119,7 +119,7 @@ console.log((num1 + num2).toFixed(2)); ## --answers-- -`80.23` +`"80.23"` ### --feedback-- @@ -127,11 +127,11 @@ Remember that `toFixed()` rounds the result based on the third decimal digit. --- -`80.24` +`"80.24"` --- -`80.25` +`"80.25"` ### --feedback-- @@ -139,7 +139,7 @@ Remember that `toFixed()` rounds the result based on the third decimal digit. --- -`80.26` +`"80.26"` ### --feedback--