Skip to content

Commit 830a94f

Browse files
authored
Update 1-js/02-first-steps/04-variables/article.md
1 parent 0fa31db commit 830a94f

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
@@ -226,7 +226,7 @@ Obvykle musíme proměnnou před použitím definovat. Ve starých časech však
226226
```js run no-strict
227227
// poznámka: v tomto příkladu není "use strict"
228228

229-
číslo = 5; // pokud proměnná "číslo" ještě neexistuje, je vytvořena
229+
čslo = 5; // pokud proměnná "čslo" ještě neexistuje, je vytvořena
230230

231231
alert(číslo); // 5
232232
```

0 commit comments

Comments
 (0)