Skip to content

Commit a86ef99

Browse files
committed
Added playground for my tutorials
1 parent 98dd0ed commit a86ef99

2 files changed

Lines changed: 3 additions & 6 deletions

File tree

ES6/Constants/README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1-
# Title
1+
# const
22

3-
Description
3+
The const declaration creates a read-only reference to a value. It does not mean the value it holds is immutable, just
4+
that the variable identifier cannot be reassigned.

ES6/Let/README.md

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,3 @@
22

33
The let statement declares a block scope local variable.
44

5-
# const
6-
7-
The const declaration creates a read-only reference to a value. It does not mean the value it holds is immutable, just
8-
that the variable identifier cannot be reassigned.

0 commit comments

Comments
 (0)