From 2efe249d55a985017d175b3637fbc53275ac2d63 Mon Sep 17 00:00:00 2001 From: Gleb Date: Tue, 3 Feb 2026 14:37:03 +0200 Subject: [PATCH] Update article.md Refine summary (passed values cnahged from "parameters" to "arguments") --- 1-js/02-first-steps/15-function-basics/article.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/1-js/02-first-steps/15-function-basics/article.md b/1-js/02-first-steps/15-function-basics/article.md index 415fed3e0a..b3aff142fb 100644 --- a/1-js/02-first-steps/15-function-basics/article.md +++ b/1-js/02-first-steps/15-function-basics/article.md @@ -522,7 +522,7 @@ function name(parameters, delimited, by, comma) { } ``` -- Values passed to a function as parameters are copied to its local variables. +- Values passed to a function as arguments are copied to its local variables. - A function may access outer variables. But it works only from inside out. The code outside of the function doesn't see its local variables. - A function can return a value. If it doesn't, then its result is `undefined`.