From f6de184fac071e4af3460e0bf01ff287bd44137e Mon Sep 17 00:00:00 2001 From: Breanna Young <144361420+W0459556@users.noreply.github.com> Date: Mon, 24 Feb 2025 13:28:30 -0400 Subject: [PATCH] fix(curriculum): fix code example for question 15 of math quiz (#58964) --- .../quiz-javascript-math/66edc3ab8c6413c344f401bf.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/curriculum/challenges/english/25-front-end-development/quiz-javascript-math/66edc3ab8c6413c344f401bf.md b/curriculum/challenges/english/25-front-end-development/quiz-javascript-math/66edc3ab8c6413c344f401bf.md index 1458c1b88a0..7be29f8a609 100644 --- a/curriculum/challenges/english/25-front-end-development/quiz-javascript-math/66edc3ab8c6413c344f401bf.md +++ b/curriculum/challenges/english/25-front-end-development/quiz-javascript-math/66edc3ab8c6413c344f401bf.md @@ -328,7 +328,7 @@ It parses a string argument and returns a floating-point number. What will be logged to the console? ```js -const num = 5; +let num = 5; console.log(++num); ```