From 39c41fde0d0dbec83bab247230bdbb43db482710 Mon Sep 17 00:00:00 2001 From: Viraj Jadhav Date: Tue, 9 Dec 2025 22:09:17 +0530 Subject: [PATCH] fix(curriculum): clarify JS functions quiz Q13 wording (#64401) --- .../quiz-javascript-functions/66edcc779993c0da6906dbb9.md | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/curriculum/challenges/english/blocks/quiz-javascript-functions/66edcc779993c0da6906dbb9.md b/curriculum/challenges/english/blocks/quiz-javascript-functions/66edcc779993c0da6906dbb9.md index 73f2e36b3f4..1990e1f617e 100644 --- a/curriculum/challenges/english/blocks/quiz-javascript-functions/66edcc779993c0da6906dbb9.md +++ b/curriculum/challenges/english/blocks/quiz-javascript-functions/66edcc779993c0da6906dbb9.md @@ -346,15 +346,13 @@ When the function body consists of a single expression. #### --text-- -What will be the result for the following code? +What will the following function return? ```js function exampleFunction() { return "Hello"; return "World!"; }; - -exampleFunction(); ``` #### --distractors--