diff --git a/1-js/02-first-steps/10-ifelse/article.md b/1-js/02-first-steps/10-ifelse/article.md index d0a3b5e6..a971c9da 100644 --- a/1-js/02-first-steps/10-ifelse/article.md +++ b/1-js/02-first-steps/10-ifelse/article.md @@ -164,7 +164,7 @@ let accessAllowed = age > 18; ## Multiple '?' -A sequence of question mark `"?"` operators allows to return a value depending on more than one condition. +A sequence of question mark `"?"` operators allows returning a value that depends on more than one condition. For instance: ```js run