From 946f8fd30d71b38d7b669b22e504c36383e27b84 Mon Sep 17 00:00:00 2001 From: BEAUDRU Manuel Date: Thu, 21 Sep 2017 20:12:36 +0200 Subject: [PATCH] Fix #18 bis --- readme.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/readme.md b/readme.md index 65145e2..0b3d3f5 100644 --- a/readme.md +++ b/readme.md @@ -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";