diff --git a/1-js/02-first-steps/11-logical-operators/article.md b/1-js/02-first-steps/11-logical-operators/article.md index 293164ad..33c90764 100644 --- a/1-js/02-first-steps/11-logical-operators/article.md +++ b/1-js/02-first-steps/11-logical-operators/article.md @@ -41,7 +41,7 @@ if (1 || 0) { // works just like if( true || false ) } ``` -Most of time, OR `||` is used in `if` to test if *any* of given conditions is correct. +Most of the time, OR `||` is used in `if` to test if *any* of given conditions is correct. For example: