Skip to content

Commit f6221fc

Browse files
Fix Typo (#2613)
1 parent 7ebb21d commit f6221fc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

concepts/basics/about.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ While it is most well-known as the scripting language for Web pages, many non-br
66

77
## (Re-)Assignment
88

9-
There are a few primary ways to assign values to names in JavaScript - using variables or constants. On Exercism, variables are always written in [camelCase][wiki-camel-case]; constants are written in [SCREAMING_SNAKE_CASE][wiki-snake-case]. There is no official guide to follow, and various companies and organizations have various style guides. _Feel free to write variables any way you like_. The upside from writing them the way the exercises are prepared is that they'll be highlighted differently in the web interface and most IDEs.
9+
There are a few primary ways to assign values to names in JavaScript - using variables or constants. On Exercism, variables are always written in [camelCase][wiki-camel-case]; constants are written in [SCREAMING_SNAKE_CASE][wiki-snake-case]. There is no official guide to follow, and various companies and organizations have various style guides. _Feel free to write variables any way you like_. The upside to writing them the way the exercises are prepared is that they'll be highlighted differently in the web interface and most IDEs.
1010

1111
Variables in JavaScript can be defined using the [`const`][mdn-const], [`let`][mdn-let] or [`var`][mdn-var] keyword.
1212

0 commit comments

Comments
 (0)