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

15 lines
408 B
Markdown
Raw Normal View History

---
title: Catch Missing Open and Closing Parenthesis After a Function Call
localeTitle: Pegar falta abrir e fechar parêntese após uma chamada de função
---
## Pegar falta abrir e fechar parêntese após uma chamada de função
* Lembre-se de adicionar parênteses de abertura e fechamento ao chamar uma função.
* Nome da função + ();
## Solução:
```javascript
let result = getNine();
```