We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 98dd0ed commit a86ef99Copy full SHA for a86ef99
2 files changed
ES6/Constants/README.md
@@ -1,3 +1,4 @@
1
-# Title
+# const
2
3
-Description
+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
@@ -2,7 +2,3 @@
The let statement declares a block scope local variable.
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