We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c9e9243 commit 97b9d09Copy full SHA for 97b9d09
1-js/02-first-steps/07-type-conversions/article.md
@@ -48,7 +48,7 @@ Pro explicitní konverzi hodnoty `hodnota` na číslo můžeme použít funkci `
48
let řtzc = "123";
49
alert(typeof řtzc); // string (řetězec)
50
51
-let num = Number(str); // stane se z něj číslo 123
+let čslo = Number(řtzc); // stane se z něj číslo 123
52
53
alert(typeof čslo); // number (číslo)
54
```
0 commit comments