mirror of
https://github.com/freeCodeCamp/freeCodeCamp.git
synced 2026-05-12 21:01:52 -04:00
fix(curriculum): remove redundant or (#61681)
This commit is contained in:
@@ -17,7 +17,7 @@ function greet() {
|
||||
|
||||
In this example, we have declared a function called `greet`. Inside that function, we have a `console.log` that logs the message `Hello, Jessica!`. If we tried to run this code, we would not see the message appear in the console. This is because we need to call the function.
|
||||
|
||||
A function call, or or invocation, is when we actually use or execute the function. To call a function, you will need to reference the function name followed by a set of parentheses:
|
||||
A function call, or invocation, is when we actually use or execute the function. To call a function, you will need to reference the function name followed by a set of parentheses:
|
||||
|
||||
```js
|
||||
function greet() {
|
||||
|
||||
Reference in New Issue
Block a user