mirror of
https://github.com/freeCodeCamp/freeCodeCamp.git
synced 2026-01-07 00:03:44 -05:00
Fix: Deleted space in between function name and parentheses. (#52142)
This commit is contained in:
@@ -20,7 +20,7 @@ When the condition evaluates to `true`, the program executes the statement insid
|
||||
**Example**
|
||||
|
||||
```js
|
||||
function test (myCondition) {
|
||||
function test(myCondition) {
|
||||
if (myCondition) {
|
||||
return "It was true";
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user