Skip to content
This repository has been archived by the owner on Oct 18, 2022. It is now read-only.

const to let correction #2

Merged
merged 2 commits into from Jan 9, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion instructor_materials/01-introduction.md
Expand Up @@ -210,7 +210,7 @@ const Somthing = '';
```javascript
const today = new Date();
const current_hour = today.getHours();
const greeting = 'Welcome!';
let greeting = 'Welcome!';

if (current_hour > 18) {
greeting = 'Good evening!';
Expand Down