Skip to content

Commit

Permalink
Fix mbeaudru#18 bis
Browse files Browse the repository at this point in the history
  • Loading branch information
mbeaudru authored Sep 21, 2017
1 parent 9f6ea51 commit 946f8fd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -225,7 +225,7 @@ By contrast with *var* variables, if you try to read or write on a *let* or *con
- **const**

A ```const```, as well as ```let```, declared variables are *block scoped* and not hoisted, but they can't be reassigned nor re-declared afterwards.
A ```const```, as well as ```let```, declared variables are *block scoped* and not accessible before being defined, but they can't be reassigned nor re-declared afterwards.

```js
const myVar = "Nick";
Expand Down

0 comments on commit 946f8fd

Please sign in to comment.