Tell us what’s happening:
Hi guys i am doing the ‘build a shape manager’ task and i am stuck in step 50.
My solution would be :
for (const [, input] of Object.entries(propertyInputs)) {
input.oninput = handleInput;
}
but the error message is: 'your for…of loop should iterate over Object.entries(propertyInputs).
Does anyone have a guess what is wrong ?
Greetz Kristof
Your code so far
<!-- file: index.html -->
/* file: styles.css */
/* file: index.ts */
// User Editable Region
for (const [, input] of Object.entries(propertyInputs)) {
input.oninput = handleInput;
}
// User Editable Region
Your browser information:
User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36
Challenge Information:
Build a Shape Manager - Step 50