Skip to content

Commit fba530a

Browse files
avoid "you" and "we" pronouns
1 parent f43af67 commit fba530a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

content/javascript/concepts/functions/functions.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ function sum(number1, number2) {
3434

3535
## Calling Functions
3636

37-
Functions can be called, or executed, elsewhere in code using parentheses following the function name. When a function is called, the code inside its function body runs.Arguments are the values you pass to a function when you call it. These values are received by the function’s parameters.
37+
Functions are executed by writing their name followed by parentheses. When a function is called, the code inside its body runs. Arguments are the values passed into a function during the call, and those values are accessed through the function’s parameters.
3838

3939
```js
4040
// Defining the function

0 commit comments

Comments
 (0)