From 9ef6bcfe98df15649eff5d99d1284c2eb8d92eb6 Mon Sep 17 00:00:00 2001 From: Henry Hart Alegrado Date: Fri, 7 Jul 2023 02:42:03 +0800 Subject: [PATCH] Update 04_day_conditionals.md --- 04_Day_Conditionals/04_day_conditionals.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/04_Day_Conditionals/04_day_conditionals.md b/04_Day_Conditionals/04_day_conditionals.md index 0100844..4001c6e 100644 --- a/04_Day_Conditionals/04_day_conditionals.md +++ b/04_Day_Conditionals/04_day_conditionals.md @@ -297,7 +297,7 @@ isRaining You are 5 years older than me. ``` -1. If a is greater than b return 'a is greater than b' else 'a is less than b'. Try to implement it in to ways +1. If a is greater than b return 'a is greater than b' else 'a is less than b'. Try to implement it in two ways: - using if else - ternary operator.