From 8831603275322cda48f6a65bd6f5dda6fada3ef7 Mon Sep 17 00:00:00 2001 From: Ilya Kantor Date: Thu, 14 Apr 2022 09:06:06 +0300 Subject: [PATCH] minor fixes --- 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 0d5ccb70..53984ce9 100644 --- a/1-js/02-first-steps/15-function-basics/article.md +++ b/1-js/02-first-steps/15-function-basics/article.md @@ -228,7 +228,7 @@ On the other hand, it's independently called every time when `text` is missing. ````smart header="Default parameters in old JavaScript code" Several years ago, JavaScript didn't support the syntax for default parameters. -So people used some other ways to specify default values, that you meet in old scripts. +So people used other ways to specify them. Nowadays, we can mostly come across them in old scripts. For example, an explicit check for `undefined`: