Learn Recursion by Building a Decimal to Binary Converter - Step 103

Tell us what’s happening:

i’m stuck, i don’t think i’m properly accessing either the current object or its message, but i don’t know what i’m doing wrong

Your code so far

<!-- file: index.html -->

/* file: styles.css */

/* file: script.js */
// User Editable Region

document.getElementById("${obj.inputVal}").textContent = obj.msg;


// User Editable Region

Your browser information:

User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.2 Safari/605.1.15

Challenge Information:

Learn Recursion by Building a Decimal to Binary Converter - Step 103

are you sure you are using the template literal correctly? don’t you need a specific syntax for that?

but also consider that it says

You should pass the obj.inputVal value directly to your getElementById call.

are you doing that?