Skip to content

Commit 21a89ce

Browse files
committed
minor
1 parent b79f8d7 commit 21a89ce

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

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

+2-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Variables
22

33
Most of the time, a JavaScript application needs to work with information. Here are 2 examples:
4-
1. An online-shop -- the information might include goods being sold and a shopping cart.
4+
1. An online-shop -- the information might include goods being sold and a shopping cart.
55
2. A chat application -- the information might include users, messages, and much more.
66

77
Variables are used to store this information.
@@ -221,14 +221,13 @@ alert(num); // 5
221221

222222
That's a bad practice, it gives an error in the strict mode:
223223

224-
```js run untrusted
224+
```js run refresh untrusted
225225
"use strict";
226226

227227
*!*
228228
num = 5; // error: num is not defined
229229
*/!*
230230
```
231-
232231
````
233232
234233
## Constants

0 commit comments

Comments
 (0)