fix(curriculum): Corrected grammar of step-104 (#55048)

This commit is contained in:
Lucas Gracia
2024-05-31 21:32:17 +01:00
committed by GitHub
parent cd551a1c85
commit 12cd5e99e6

View File

@@ -7,9 +7,9 @@ dashedName: step-104
# --description--
You used the `inputVal` property as the `id` attribute for your paragraph elements. Now you can target those the paragraph elements with those `id`s.
You have set the `id` attribute for your paragraph elements to the `obj.inputVal` property.
Use the `.getElementById()` method to select the element with the `id` attribute with the value of the `inputVal` property of the current object.
Now, use `getElementById` to select the element with that attribute value, again using the `obj.inputVal` property.
# --hints--