From 4c6089215df148eafb240d1ae457b496edfb9ecb Mon Sep 17 00:00:00 2001 From: Asabeneh Date: Wed, 8 Jan 2020 17:39:58 +0200 Subject: [PATCH] cleanig day 7 --- 04_Day/04_day_conditionals.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/04_Day/04_day_conditionals.md b/04_Day/04_day_conditionals.md index 2389d27..89f56b1 100644 --- a/04_Day/04_day_conditionals.md +++ b/04_Day/04_day_conditionals.md @@ -24,7 +24,7 @@ - [Conditionals](#conditionals) - [if](#if) - [if else](#if-else) - - [if else if else else](#if-else-if-else-else) + - [if else if else](#if-else-if-else) - [Switch](#switch) - [Ternary Operators](#ternary-operators) - [💻 Exercise : Conditionals](#%f0%9f%92%bb-exercise--conditionals) @@ -128,7 +128,7 @@ if (isRaining) { The above condition is false, therefore the else block was executed. How about if our condition is more than two, we will use *else if* conditions. -### if else if else else +### if else if else On our daily life, we make decision on daily basis. We make decision not by checking one or two conditions instead we make decisions based on multiple conditions. As similar to our daily life, programming is also full conditions. We use *else if* when we have multiple conditions.