fix(curriculum): fix typo in JavaScript Quiz (#58276)

Co-authored-by: root <root@Jr-Gaming-Laptop>
This commit is contained in:
Chris Nguyen 2025-01-22 02:12:17 -08:00 committed by GitHub
parent b623495ada
commit a6f45a4032
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -276,7 +276,7 @@ Which of these does not set the element text color to `red`.
#### --text--
In the case of a click event, which `Event` property returns the clicked sub-element that triggerred the parent's callback?
In the case of a click event, which `Event` property returns the clicked sub-element that triggered the parent's callback?
#### --distractors--
@ -427,7 +427,7 @@ The first parameter is the function callback and the second is the delay duratio
---
`setTimeout` calls a function once after a delay and `setInterval` call a function continously after an interval delay.
`setTimeout` calls a function once after a delay and `setInterval` call a function continuously after an interval delay.
---