Defining and calling a function

I defined and called a function as provided example but i am getting errors although it is exactly like tutorial’s code , any one can help please ??

this is my code

/*
function resuableFunction() {

  console.log("Hi World");

}
resuableFunction();
*/

and this is errors list i got:

reusableFunction should be a function.

If reusableFunction is called, it should output the string Hi World to the console.

You should call reusableFunction once it is defined.

It looks like you have typos

I’ve edited your post for readability. When you enter a code block into a forum post, please precede it with a separate line of three backticks and follow it with a separate line of three backticks to make it easier to read.

You can also use the “preformatted text” tool in the editor (</>) to add backticks around text.

See this post to find the backtick on your keyboard.
Note: Backticks (`) are not single quotes (’).

oh Jeremy, I got the error, thanks so much for your fast response , and i am sorry for missing code formatting before posting it.

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