fix(curriculum): a tiny typo in step 6 of the js recursion project (#54579)

This commit is contained in:
Ryan Bremer 2024-04-30 18:07:28 +02:00 committed by GitHub
parent a534e4ff75
commit 684ce99ede
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -9,7 +9,7 @@ dashedName: step-6
Whenever an event listener is triggered by an event, an event object is created automatically. You don't always need to use this object, like with your `click` handler above, but it can be useful to access information about the event that was triggered.
First, pass `e` as a parameter to your callback function. Remember that `e` is a common parameter name for the event object. Next, log `e` to the console in the body your callback function.
First, pass `e` as a parameter to your callback function. Remember that `e` is a common parameter name for the event object. Next, log `e` to the console in the body of your callback function.
# --hints--