From 45da02b4388fd0f0807ce108ea6a11097f025b88 Mon Sep 17 00:00:00 2001 From: Teascade Date: Sat, 26 Aug 2017 00:38:52 +0000 Subject: [PATCH] Clarified the conditions-example --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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