Skip to content

Commit 6504de2

Browse files
committed
minor
1 parent 72528a3 commit 6504de2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

1-js/2-first-steps/5-variables/article.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -293,7 +293,7 @@ So, sometimes constants are used as aliases to complex values, to evade errors a
293293
We can declare variables to store data. That can be done using `var` or `let` or `const`.
294294

295295
<ul>
296-
<li>`let` -- is a normal modern variable declaration. The code must be in strict mode to use in Chrome (V8).</li>
296+
<li>`let` -- is a modern variable declaration. The code must be in strict mode to use `let` in Chrome (V8).</li>
297297
<li>`var` -- is an old-school compatibility variable declaration. We'll study the subtle differences from `let` later, after we get familiar with the basics.</li>
298298
<li>`const` -- is like `let`, but the variable can't be changed.</li>
299299
</ul>

0 commit comments

Comments
 (0)