From 07f1b554ffec3f3aa12f25673e6c82a1bb6858d1 Mon Sep 17 00:00:00 2001 From: Ibrahim Khan <101021647+IbrahimKhanGH@users.noreply.github.com> Date: Sat, 4 Jan 2025 04:27:10 -0600 Subject: [PATCH] fix(curriculum): update instructions of Decimal to Binary Converter step 104 (#57846) Co-authored-by: Sem Bauke --- .../6464b1384318a5087190950a.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/curriculum/challenges/english/25-front-end-development/workshop-decimal-to-binary-converter/6464b1384318a5087190950a.md b/curriculum/challenges/english/25-front-end-development/workshop-decimal-to-binary-converter/6464b1384318a5087190950a.md index 36568bfc1d4..1bcc7a9900a 100644 --- a/curriculum/challenges/english/25-front-end-development/workshop-decimal-to-binary-converter/6464b1384318a5087190950a.md +++ b/curriculum/challenges/english/25-front-end-development/workshop-decimal-to-binary-converter/6464b1384318a5087190950a.md @@ -9,7 +9,7 @@ dashedName: step-104 Now that you've targeted the correct element, you can update its text after the delay you specified earlier. -Using the `.getElementById()` method, set the `textContent` property of the targeted element equal to the `msg` property of the current object. +Set the `textContent` property of the targeted element equal to the `msg` property of the current object by using property chaining on your `.getElementById()` method directly. # --hints--