Tell us what’s happening:
My code :
console.log(“Inputs: “+inputs.join(”,”))
I also tried : console.log(“Inputs: “+inputs+”,”)
Can someone please explain what is expected please ? I’m out of solutions.
Error : You should log the text "Inputs: " and the inputs array to the console, separated by a comma.
Your code so far
<!-- file: index.html -->
/* file: script.js */
// User Editable Region
console.log("Inputs: "+inputs.join(","))
// User Editable Region
/* file: styles.css */
Your browser information:
User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36
Challenge Information:
Learn Recursion by Building a Decimal to Binary Converter - Step 31