From 37e5cf405769bb05c95807b5cc5d7953a446625c Mon Sep 17 00:00:00 2001 From: CodeGuage <99533223+codeguage-code@users.noreply.github.com> Date: Sat, 12 Nov 2022 00:44:00 +0500 Subject: [PATCH] Added new resource for variable naming rules (#2919) This resource gives some very useful variable naming tips for JavaScript. --- .../content/101-javascript-variables/102-naming-rules.md | 1 + 1 file changed, 1 insertion(+) diff --git a/content/roadmaps/106-javascript/content/101-javascript-variables/102-naming-rules.md b/content/roadmaps/106-javascript/content/101-javascript-variables/102-naming-rules.md index 22bdfbab5..6e14f01cc 100644 --- a/content/roadmaps/106-javascript/content/101-javascript-variables/102-naming-rules.md +++ b/content/roadmaps/106-javascript/content/101-javascript-variables/102-naming-rules.md @@ -3,6 +3,7 @@ A variable name should accurately identify your variable. When you create good variable names, your JavaScript code becomes easier to understand and easier to work with. Properly naming variables is really important. JavaScript also has some rules when it comes to naming variables; read about these rules through the links below. Free Content +JavaScript Variable Naming Tips - CodeGuage Understanding Variables in JavaScript Naming JavaScript Variables JavaScript Naming Conventions