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 23b73be commit c9e9243Copy full SHA for c9e9243
1-js/02-first-steps/07-type-conversions/article.md
@@ -45,7 +45,7 @@ alert( "6" / "2" ); // 3, řetězce se konvertují na čísla
45
Pro explicitní konverzi hodnoty `hodnota` na číslo můžeme použít funkci `Number(hodnota)`:
46
47
```js run
48
-let str = "123";
+let řtzc = "123";
49
alert(typeof řtzc); // string (řetězec)
50
51
let num = Number(str); // stane se z něj číslo 123
0 commit comments