You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: 1-js/05-data-types/02-number/article.md
+2-6Lines changed: 2 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -50,11 +50,7 @@ let mсs = 0.000001;
50
50
Stejně jako předtím nám může pomoci použití `"e"`. Jestliže se chceme vyhnout explicitnímu zápisu nul, můžeme zapsat totéž jako:
51
51
52
52
```js
53
-
<<<<<<<HEAD
54
-
let ms =1e-6; // šest nul nalevo od 1
55
-
=======
56
-
let mcs =1e-6; // six zeroes to the left from 1
57
-
>>>>>>> a6fdfda09570a8ce47bb0b83cd7a32a33869cfad
53
+
let mcs =1e-6; // šest nul nalevo od 1
58
54
```
59
55
60
56
Spočítáme-li nuly v čísle `0.000001`, bude jich 6. Je to tedy přirozeně `1e-6`.
@@ -444,4 +440,4 @@ Pro desetinná čísla:
444
440
445
441
Další matematické funkce:
446
442
447
-
-Až je budete potřebovat, viz objekt [Math](https://developer.mozilla.org/en/docs/Web/JavaScript/Reference/Global_Objects/Math). Je to velmi malá knihovna, ale základní potřeby dokáže pokrýt.
443
+
-Až je budete potřebovat, viz objekt [Math](https://developer.mozilla.org/en/docs/Web/JavaScript/Reference/Global_Objects/Math). Je to velmi malá knihovna, ale základní potřeby dokáže pokrýt.
0 commit comments