From f43af672a373313b5b42c529b008bdfd677f19cc Mon Sep 17 00:00:00 2001 From: tellamekalasubbu-commits Date: Wed, 26 Nov 2025 21:13:16 +0530 Subject: [PATCH 1/2] Improve clarity of arguments description in functions documentation --- content/javascript/concepts/functions/functions.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/javascript/concepts/functions/functions.md b/content/javascript/concepts/functions/functions.md index f9976cea654..b8e9750d36e 100644 --- a/content/javascript/concepts/functions/functions.md +++ b/content/javascript/concepts/functions/functions.md @@ -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 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. ```js // Defining the function From fba530a9bcb97aa49b8de4a91c6eabc57ac1d464 Mon Sep 17 00:00:00 2001 From: Mamta Wardhani Date: Wed, 3 Dec 2025 18:01:57 +0530 Subject: [PATCH 2/2] avoid "you" and "we" pronouns --- content/javascript/concepts/functions/functions.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/javascript/concepts/functions/functions.md b/content/javascript/concepts/functions/functions.md index b8e9750d36e..3c159d8e595 100644 --- a/content/javascript/concepts/functions/functions.md +++ b/content/javascript/concepts/functions/functions.md @@ -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 the values you pass to a function when you call it. These values are received by the function’s parameters. +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