We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8d6aced commit 3989208Copy full SHA for 3989208
1-js/05-data-types/02-number/article.md
@@ -16,7 +16,7 @@
16
let billion = 1000000000;
17
```
18
19
-但在现实生活中,我们通常避免写一长串零,因为它很容易打错。另外,我们很懒。我们通常会将 10 亿写成 `"1bn"`,或将 72 亿写成 `"7.3bn"`。对于大多数大的数字来说都是如此。
+但在现实生活中,我们通常避免写一长串零,因为它很容易打错。另外,我们很懒。我们通常会将 10 亿写成 `"1bn"`,或将 73 亿写成 `"7.3bn"`。对于大多数大的数字来说都是如此。
20
21
在 JavaScript 中,我们通过在数字后附加字母 "e",并指定零的数量来缩短数字:
22
0 commit comments