fix(curriculum): clarify JS functions quiz Q13 wording (#64401)

This commit is contained in:
Viraj Jadhav 2025-12-09 22:09:17 +05:30 committed by GitHub
parent e746e5ff24
commit 39c41fde0d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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--