I'm not sure where I have gone wrong

Tell us what’s happening:
I checked forums for this exercise and even directly copied the answer but it still did not work
Your code so far


function reusableFunction() {
console.log("Hi World");
}
  **Your browser information:**

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36.

Challenge: Write Reusable JavaScript with Functions

Link to the challenge:

I think you missed this instruction

  1. Call the function.

It still won’t work

function reusableFunction() {
console.log(“Hi World”);
}
reuseableFunction();

You have misspelled the function name to call it. That is why it does not work.

1 Like

Thank you, I have a new understanding of my intellectual capabilities, in the sense that I know now that I am just dumb

it is fine. sometimes we didn’t realize we made mistakes to write misspelling.

1 Like

Yep. I lost count of the number of typos I’ve made a few million ago.

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.