fix(curriculum): update terminology in JavaScript Functions Review (#66417)

This commit is contained in:
Shoumik Saha 2026-03-13 18:12:21 +06:00 committed by GitHub
parent 01080c5d8d
commit c70d7f8549
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

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