diff --git a/README.md b/README.md index 79e87ae..eec046c 100644 --- a/README.md +++ b/README.md @@ -127,10 +127,10 @@ Operators for conditions are Any of these can be mixed with any of them, and can be wrapped in parenthesis to priorisize which must be tested first. Examples: ``` -let first = true; -let second = first == true; -let third = second && first; -let fourth = "otus" == "test" || (first ^ second); +let first = true; // true +let second = first == false; // false +let third = second && first; // false +let fourth = "otus" == "test" || (first ^ second); // true ``` ## Values