Basic JavaScript - Write Reusable JavaScript with Functions

Tell us what’s happening:
Describe your issue in detail here.
** Hello fam**
My function is giving me problems please see link. what is it that i am not doing?
Your code so far
https://www.freecodecamp.org/learn/javascript-algorithms-and-data-structures/basic-javascript/write-reusable-javascript-with-functions

javascript
function reusablefunction(){
console.log(“Hi world”);
}

reusablefunction ();

Your browser information:

User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/108.0.0.0 Safari/537.36

Challenge: Basic JavaScript - Write Reusable JavaScript with Functions

Link to the challenge:

You need to pay attention to capitalisation in variable/function names.
These are often created in camelCase (i.e. first word lowercase and subsequent words start with capital letter).

You have wrongly written the function name

1 Like

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