fix(curriculum): specify using function parameter in description (#61735)

Co-authored-by: Tiffany Grevious <tjgrevious@example.com>
This commit is contained in:
Tiffany Grevious 2025-08-09 00:51:51 -07:00 committed by GitHub
parent 6451b572f2
commit b84dc47ecb
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View File

@ -13,7 +13,7 @@ Since this message will be used repeatedly throughout the workshop, it is best t
Create a function called `getShoppingListMsg` that takes an array as a parameter and returns the string `"Current Shopping List: "` followed by the contents of the provided array.
You can use template literals or string concatenation with the `+` operator to combine the string and the `shoppingList` array.
You can use template literals or string concatenation with the `+` operator to combine the string with the array passed to the function.
# --hints--

View File

@ -9,7 +9,7 @@ dashedName: step-14
In the previous lectures, you learned how to remove items from the end of an array using the `pop` method.
Here is reminder of how to use the `pop` method:
Here is a reminder of how to use the `pop` method:
```js
let array = [1, 2, 3, 4, 5];