Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -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)
2 changes: 1 addition & 1 deletion readMe.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 detailed examples.

**Examples of declared variables**

Expand Down