From 12cd5e99e6d280f20877de4db232aa7e8035562f Mon Sep 17 00:00:00 2001 From: Lucas Gracia <146884567+LuG-r@users.noreply.github.com> Date: Fri, 31 May 2024 21:32:17 +0100 Subject: [PATCH] fix(curriculum): Corrected grammar of step-104 (#55048) --- .../6464ad3c9b2e6cf58224cfa9.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/curriculum/challenges/english/15-javascript-algorithms-and-data-structures-22/learn-recursion-by-building-a-decimal-to-binary-converter/6464ad3c9b2e6cf58224cfa9.md b/curriculum/challenges/english/15-javascript-algorithms-and-data-structures-22/learn-recursion-by-building-a-decimal-to-binary-converter/6464ad3c9b2e6cf58224cfa9.md index 67f700f766b..dd2efa95c70 100644 --- a/curriculum/challenges/english/15-javascript-algorithms-and-data-structures-22/learn-recursion-by-building-a-decimal-to-binary-converter/6464ad3c9b2e6cf58224cfa9.md +++ b/curriculum/challenges/english/15-javascript-algorithms-and-data-structures-22/learn-recursion-by-building-a-decimal-to-binary-converter/6464ad3c9b2e6cf58224cfa9.md @@ -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--