diff --git a/curriculum/challenges/english/blocks/review-javascript-fundamentals/6723ca166fe90eb0a3146848.md b/curriculum/challenges/english/blocks/review-javascript-fundamentals/6723ca166fe90eb0a3146848.md index 13d55deab00..9eae8705862 100644 --- a/curriculum/challenges/english/blocks/review-javascript-fundamentals/6723ca166fe90eb0a3146848.md +++ b/curriculum/challenges/english/blocks/review-javascript-fundamentals/6723ca166fe90eb0a3146848.md @@ -61,7 +61,7 @@ let hasPermission = false; let canEdit = true; ``` -- **Naming Functions**: For functions, the name should clearly indicate what the function does. For functions that return a boolean (often called predicates), you can use the same "is", "has", or "can" prefixes. When you have functions that retrieve data, it is common to start with the word "get". When you have functions that set data, it is common start with the word "set". For event handler functions, you might prefix with "handle" or suffix with "Handler". +- **Naming Functions**: For functions, the name should clearly indicate what the function does. For functions that return a boolean (often called predicates), you can use the same "is", "has", or "can" prefixes. When you have functions that retrieve data, it is common to start with the word "get". When you have functions that set data, it is common to start with the word "set". For event handler functions, you might prefix with "handle" or suffix with "Handler". ```js function getUserData() { /* ... */ }