Skip to content

Commit a95c871

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

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
@@ -228,7 +228,7 @@ Obvykle musíme proměnnou před použitím definovat. Ve starých časech však
228228

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

231-
alert(číslo); // 5
231+
alert(čslo); // 5
232232
```
233233

234234
Je to špatný zvyk a ve striktním režimu vyvolá chybu:

0 commit comments

Comments
 (0)