From c70d7f8549818c2a7ebc5e0322ea63cba3569760 Mon Sep 17 00:00:00 2001 From: Shoumik Saha <73770963+shOumik-saha@users.noreply.github.com> Date: Fri, 13 Mar 2026 18:12:21 +0600 Subject: [PATCH] fix(curriculum): update terminology in JavaScript Functions Review (#66417) --- .../review-javascript-functions/6723c5b8601a40a100bb59c9.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/curriculum/challenges/english/blocks/review-javascript-functions/6723c5b8601a40a100bb59c9.md b/curriculum/challenges/english/blocks/review-javascript-functions/6723c5b8601a40a100bb59c9.md index 75f3b63d757..b5d9de6da35 100644 --- a/curriculum/challenges/english/blocks/review-javascript-functions/6723c5b8601a40a100bb59c9.md +++ b/curriculum/challenges/english/blocks/review-javascript-functions/6723c5b8601a40a100bb59c9.md @@ -43,7 +43,7 @@ console.log(calculateTotal(100)); // Output: 105 ::: -- Function Expressions are functions that you assign to variables. By doing this, you can use the function in any part of your code where the variable is accessible. +- Anonymous functions are functions without a name that can be assigned to variables. By assigning them to variables, you can reuse them anywhere the variable is accessible. :::interactive_editor