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) {