Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion content/javascript/concepts/functions/functions.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ function sum(number1, number2) {

## Calling Functions

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 values passed into a function when it is called.
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.

```js
// Defining the function
Expand Down