13 lines
303 B
Markdown
13 lines
303 B
Markdown
|
---
|
||
|
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:
|
||
|
```javascript
|
||
|
let result = getNine();
|
||
|
```
|