From e0ebd6fad9bba58cd7001417e784427b2fae3e7c Mon Sep 17 00:00:00 2001 From: borsec-suveran <62297262+borsec-suveran@users.noreply.github.com> Date: Thu, 19 Mar 2020 14:19:22 -0400 Subject: [PATCH] Update 02_.md The Application Question for Boolean does not accept '1 == 1' as the correct answer, even though the Explanation lists it as correct. --- 02_Data Types and Variables/00_Data Types/07_Boolean/02_.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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.