What's the problem i cant understand this

Tell us what’s happening:
Please help me to solve this …
Thanks :slight_smile:

   **Your code so far**

function functionWithArgs(Hello, World) {
  console.log(Hello + World);
  functionWithArgs(Hello, World);
}
   **Your browser information:**

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

Challenge: Passing Values to Functions with Arguments

Link to the challenge:

Hello!

For this challenge you need to call the function outside of its declaration. As it’s written now, this would loop infinitely.

Also, when you call it outside of the declaration, you need to include 2 numbers as arguments as per the instructions.

Hope this helps!

Thank you! That greatly helped me

1 Like

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