diff --git a/02_Data Types and Variables/00_Data Types/07_Boolean/02_.md b/02_Data Types and Variables/00_Data Types/07_Boolean/02_.md index d3aa43a..85ce412 100755 --- a/02_Data Types and Variables/00_Data Types/07_Boolean/02_.md +++ b/02_Data Types and Variables/00_Data Types/07_Boolean/02_.md @@ -1 +1 @@ -The variable `greaterAB` holds false because 1 is not greater than 2. The variable `equalA1` will be true because the variable `a` is holding the integer value of 1. The examples above are very simple examples of how booleans are used in JavaScript. However, statements like these are what we need to build functional programs or sites in the future, so make sure you understand why the expressions evaluate to `true` and `false` respectively. \ No newline at end of file +The variable `greaterAB` holds false because 1 is not greater than 2. The variable `equalA1` will be true because the variable `a` is holding the integer value of 1. The examples above are very simple examples of how booleans are used in JavaScript. However, statements like these are what we need to build functional programs or sites in the future, so make sure you understand why the expressions evaluate to `true` and `false` respectively.