From fb176f371e1729bf3121cccd787176f136996031 Mon Sep 17 00:00:00 2001 From: Nigel Davila Date: Mon, 12 Sep 2022 14:00:24 -0500 Subject: [PATCH] Update 03_booleans_operators_date.md Since you haven't covered conditionals yet I think saying "Another way to write conditionals is using ternary operators" can be confusing. --- 03_Day_Booleans_operators_date/03_booleans_operators_date.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/03_Day_Booleans_operators_date/03_booleans_operators_date.md b/03_Day_Booleans_operators_date/03_booleans_operators_date.md index bb376ae..16f952c 100644 --- a/03_Day_Booleans_operators_date/03_booleans_operators_date.md +++ b/03_Day_Booleans_operators_date/03_booleans_operators_date.md @@ -297,7 +297,7 @@ console.log(count) // -1 ### Ternary Operators Ternary operator allows to write a condition. -Another way to write conditionals is using ternary operators. Look at the following examples: +Later we'll see another way to create conditionals. Look at the following examples: ```js let isRaining = true