Skip to content

Commit 212c527

Browse files
authored
⚡ add missed break line and remove extra one
1 parent 98be74f commit 212c527

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

1-js/02-first-steps/04-variables/article.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,6 +104,7 @@ For instance, the variable `message` can be imagined as a box labeled `"message"
104104
We can put any value in the box.
105105
106106
We can also change it as many times as we want:
107+
107108
```js run
108109
let message;
109110
@@ -261,7 +262,6 @@ myBirthday = '01.01.2001'; // error, can't reassign the constant!
261262
262263
When a programmer is sure that a variable will never change, they can declare it with `const` to guarantee and clearly communicate that fact to everyone.
263264
264-
265265
### Uppercase constants
266266
267267
There is a widespread practice to use constants as aliases for difficult-to-remember values that are known prior to execution.

0 commit comments

Comments
 (0)