From 611c0fa10cdd4d9485dbe7d42201eac5cb130196 Mon Sep 17 00:00:00 2001 From: Patrick Silvestre Date: Mon, 16 Sep 2019 02:08:16 -0700 Subject: [PATCH] Update article.md --- 1-js/02-first-steps/04-variables/article.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/1-js/02-first-steps/04-variables/article.md b/1-js/02-first-steps/04-variables/article.md index 80a36d9c..3396846e 100644 --- a/1-js/02-first-steps/04-variables/article.md +++ b/1-js/02-first-steps/04-variables/article.md @@ -290,7 +290,7 @@ In other words, capital-named constants are only used as aliases for "hard-coded Talking about variables, there's one more extremely important thing. -A variable name should have a clean, obvious meaning, describe the data that it stores. +A variable name should have a clean, obvious meaning, describing the data that it stores. Variable naming is one of the most important and complex skills in programming. A quick glance at variable names can reveal which code was written by a beginner versus an experienced developer.