Skip to content

Commit a609fbf

Browse files
committed
Edited ch09.asciidoc with Atlas code editor
1 parent c73eb48 commit a609fbf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ch09.asciidoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ Granted, there are more rules to a `const` declaration than to a `var` declarati
2727

2828
The more constrained statements are, the simpler a piece of code becomes. As we add constraints to what a statement might mean, code becomes less unpredictable. This is one of the reasons why statically typed programs are, generally speaking, a bit easier to read than their dynamically typed counterparts. Static typing places a big constraint on the program writer, but it also places a big constraint on how the program can be interpreted, making its code easier to understand.
2929

30-
With these arguments in mind, it is recommended that you use `const` where possible, as it's the statement that gives us the least possibilities to think about.
30+
With these arguments in mind, it is recommended that you use `const` where possible, as it's the statement that gives us the fewest possibilities to think about.
3131

3232
[source,javascript]
3333
----

0 commit comments

Comments
 (0)