From fe4ec0f184bd73ebbb245f4b0a8b1e5e8ed96769 Mon Sep 17 00:00:00 2001 From: Bhaskar Kashyap <31563474+bskrksyp9@users.noreply.github.com> Date: Thu, 21 Dec 2023 14:07:16 +0530 Subject: [PATCH] Sentence Improvement Choice of words --- 2-js-basics/1-data-types/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/2-js-basics/1-data-types/README.md b/2-js-basics/1-data-types/README.md index e374e51c..5a427e20 100644 --- a/2-js-basics/1-data-types/README.md +++ b/2-js-basics/1-data-types/README.md @@ -175,7 +175,7 @@ You can achieve your formatting goals with either method, but template literals ### Booleans -Booleans can be only two values: `true` or `false`. Booleans can help make decisions on which lines of code should run when certain conditions are met. In many cases, [operators](#arithmetic-operators) assist with setting the value of a Boolean and you will often notice and write variables being initialized or their values being updated with an operator. +Booleans can have only two values: `true` or `false`. Booleans can help make decisions on which lines of code should run when certain conditions are met. In many cases, [operators](#arithmetic-operators) assist with setting the value of a Boolean and you will often notice and write variables being initialized or their values being updated with an operator. - `let myTrueBool = true` - `let myFalseBool = false`