Fix: Deleted space in between function name and parentheses. (#52142)

This commit is contained in:
Web-Dev-Codi
2023-10-28 04:35:07 +02:00
committed by GitHub
parent 3912e15f44
commit 96f0797769

View File

@@ -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";
}