From 5dbae232e0bf2355ea92a00c1b9d3f595efef311 Mon Sep 17 00:00:00 2001 From: Tobechukwu David Uka <54605363+ukadavid@users.noreply.github.com> Date: Wed, 29 Jun 2022 18:44:13 +0100 Subject: [PATCH] Day 4 grammer change The change is on line 36 and 37 --- 04_Day_Conditionals/04_day_conditionals.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/04_Day_Conditionals/04_day_conditionals.md b/04_Day_Conditionals/04_day_conditionals.md index 0100844..e6c4dc5 100644 --- a/04_Day_Conditionals/04_day_conditionals.md +++ b/04_Day_Conditionals/04_day_conditionals.md @@ -33,8 +33,8 @@ ## Conditionals -Conditional statements are used for make decisions based on different conditions. -By default , statements in JavaScript script executed sequentially from top to bottom. If the processing logic require so, the sequential flow of execution can be altered in two ways: +Conditional statements are used to make decisions based on different conditions. +By default , statements in JavaScript script are executed sequentially from top to bottom. If the processing logic require so, the sequential flow of execution can be altered in two ways: - Conditional execution: a block of one or more statements will be executed if a certain expression is true - Repetitive execution: a block of one or more statements will be repetitively executed as long as a certain expression is true. In this section, we will cover _if_, _else_ , _else if_ statements. The comparison and logical operators we learned in the previous sections will be useful in here.