From 456eb086021856a6092c2a2617e1597e517b0423 Mon Sep 17 00:00:00 2001 From: Charith Jayodya Date: Wed, 28 May 2025 13:44:37 +0530 Subject: [PATCH 1/3] fixed typo in nameOfVriable --- readMe.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/readMe.md b/readMe.md index 2445614..f87bbe3 100644 --- a/readMe.md +++ b/readMe.md @@ -614,7 +614,7 @@ Let us declare variables with different data types. To declare a variable, we ne let nameOfVariable = value ``` -The nameOfVriable is the name that stores different data of value. See below for detail examples. +The nameOfVariable is the name that stores different data of value. See below for detail examples. **Examples of declared variables** From a498b686621b69dba4cb8434efff8a632c6e97ab Mon Sep 17 00:00:00 2001 From: Charith Jayodya Date: Wed, 28 May 2025 14:37:58 +0530 Subject: [PATCH 2/3] changed detail examples to detailed examples --- readMe.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/readMe.md b/readMe.md index f87bbe3..9f07c09 100644 --- a/readMe.md +++ b/readMe.md @@ -614,7 +614,7 @@ Let us declare variables with different data types. To declare a variable, we ne let nameOfVariable = value ``` -The nameOfVariable is the name that stores different data of value. See below for detail examples. +The nameOfVariable is the name that stores different data of value. See below for detailed examples. **Examples of declared variables** From 8aa3ce158df2592474713028b799dc061e51e127 Mon Sep 17 00:00:00 2001 From: Charith Jayodya Date: Sun, 1 Jun 2025 01:17:46 +0530 Subject: [PATCH 3/3] fixed a typo in day 3 exercise 03 --- 03_Day_Booleans_operators_date/03_booleans_operators_date.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/03_Day_Booleans_operators_date/03_booleans_operators_date.md b/03_Day_Booleans_operators_date/03_booleans_operators_date.md index bb376ae..f8f2019 100644 --- a/03_Day_Booleans_operators_date/03_booleans_operators_date.md +++ b/03_Day_Booleans_operators_date/03_booleans_operators_date.md @@ -628,6 +628,6 @@ console.log(`${date}/${month}/${year} ${hours}:${minutes}`) // 4/1/2020 0:56 ### Exercises: Level 3 1. Create a human readable time format using the Date time object. The hour and the minute should be all the time two digits(7 hours should be 07 and 5 minutes should be 05 ) - 1. YYY-MM-DD HH:mm eg. 20120-01-02 07:05 + 1. YYYY-MM-DD HH:mm eg. 2012-01-02 07:05 [<< Day 2](../02_Day_Data_types/02_day_data_types.md) | [Day 4 >>](../04_Day_Conditionals/04_day_conditionals.md)