freeCodeCamp/guide/english/certifications/javascript-algorithms-and-d.../debugging/catch-missing-open-and-clos.../index.md

303 B

title
Catch Missing Open and Closing Parenthesis After a Function Call

Catch Missing Open and Closing Parenthesis After a Function Call

  • Remember to add opening and closing parentheses when calling a function.
  • FunctionName + ();

Solution:

 let result = getNine();