From 9847492838326ea9c161aebeb1ebb6749bd1f5cd Mon Sep 17 00:00:00 2001 From: Elena Valeeva Date: Sun, 20 Jun 2021 08:12:59 +0300 Subject: [PATCH] Typo in Ch 15 Functions --- 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 ac6f1f47..09ad90dc 100644 --- a/1-js/02-first-steps/15-function-basics/article.md +++ b/1-js/02-first-steps/15-function-basics/article.md @@ -247,7 +247,7 @@ function showMessage(text) { showMessage(); // empty message ``` -...Or we could use the `??` operator: +...Or we could use the `||` operator: ```js function showMessage(text) {