diff --git a/4 - If Else and Logical Operators/README.md b/4 - If Else and Logical Operators/README.md index f7b0179..20d7b6f 100644 --- a/4 - If Else and Logical Operators/README.md +++ b/4 - If Else and Logical Operators/README.md @@ -48,8 +48,8 @@ Depends on what you're trying to do. There's lots of different options, but the - != - Is something not equal to something else - < - Is the left value less than the right value - <= - Is the left value less than or equal to the right value -- > - Is the left value greater than the right value -- >= - Is the left value greater than or equal to the right value +- \> - Is the left value greater than the right value +- \>= - Is the left value greater than or equal to the right value Sometimes conditions are as simple as, is this less than that, or is this equal to that. Sometimes you need to check multiple things! This is where AND and OR come into play. These are logical operators that can "combine" the results of different questions (like is equal to) into a single true false value.