From 07b7d35f19f92f5b2d90accb633acbda9087447e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Abdurrahman=20Ayy=C4=B1ld=C4=B1z?= Date: Tue, 30 Aug 2022 01:01:09 +0300 Subject: [PATCH] Update 20_day_writing_clean_codes.md --- 20_Day_Writing_clean_codes/20_day_writing_clean_codes.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/20_Day_Writing_clean_codes/20_day_writing_clean_codes.md b/20_Day_Writing_clean_codes/20_day_writing_clean_codes.md index 8579b6b..c2715f8 100644 --- a/20_Day_Writing_clean_codes/20_day_writing_clean_codes.md +++ b/20_Day_Writing_clean_codes/20_day_writing_clean_codes.md @@ -184,7 +184,7 @@ The `new Dat().toLocaleString()` can also be used to display current date time. #### Loops -We coverer many types of loops in this challenges. The regular for loop, while loop, do while loop, for of loop, forEach loop and for in loop. +We covered many types of loops in this challenges. The regular for loop, while loop, do while loop, for of loop, forEach loop and for in loop. Lets see how we use them: ```js