From 09a35e823549f032c36b285d905bcfb4a407e03e Mon Sep 17 00:00:00 2001 From: CodeGuage <99533223+codeguage-code@users.noreply.github.com> Date: Sat, 12 Nov 2022 00:43:40 +0500 Subject: [PATCH] Add resource for constr (#2920) --- .../100-variable-declarations/102-const.md | 1 + 1 file changed, 1 insertion(+) diff --git a/content/roadmaps/106-javascript/content/101-javascript-variables/100-variable-declarations/102-const.md b/content/roadmaps/106-javascript/content/101-javascript-variables/100-variable-declarations/102-const.md index 4fef346f4..a195fe52d 100644 --- a/content/roadmaps/106-javascript/content/101-javascript-variables/100-variable-declarations/102-const.md +++ b/content/roadmaps/106-javascript/content/101-javascript-variables/100-variable-declarations/102-const.md @@ -3,6 +3,7 @@ Constants are block-scoped, much like variables declared using the `let` keyword. The value of a constant can't be changed through reassignment (i.e. by using the assignment operator), and it can't be redeclared (i.e. through a variable declaration). However, if a constant is an object or array its properties or items can be updated or removed. Free Content +JavaScript Constants - CodeGuage const keyword - MDN Docs JavaScript Variables How to declare variables in different ways in JavaScript?