From 89c7187d3ea217ecdc2f4a22e381190bc87188dc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Abdurrahman=20Ayy=C4=B1ld=C4=B1z?= <ayyildizabdurrahman@gmail.com> Date: Sun, 31 Jul 2022 17:03:47 +0300 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..a45c5dd 100644 --- a/04_Day_Conditionals/04_day_conditionals.md +++ b/04_Day_Conditionals/04_day_conditionals.md @@ -49,7 +49,7 @@ Conditions can be implementing using the following ways: ### If -In JavaScript and other programming languages the key word _if_ is to used check if a condition is true and to execute the block code. To create an if condition, we need _if_ keyword, condition inside a parenthesis and block of code inside a curly bracket({}). +In JavaScript and other programming languages the key word _if_ is to used check if a condition is true and to execute the block code. To create an if condition, we need _if_ keyword, condition inside a parenthesis() and block of code inside a curly bracket{}. ```js // syntax