fix(curriculum): remove redundant or (#61681)

This commit is contained in:
sinha21Soumya
2025-08-06 17:29:48 +05:30
committed by GitHub
parent be4c451041
commit 276b39638e

View File

@@ -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() {