Skip to content

Commit 3989208

Browse files
Fix minor typo error in 1-js/05-data-types/02-number/article.md (#805)
Fix minor typo error in 1-js/05-data-types/02-number/article.md
1 parent 8d6aced commit 3989208

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

1-js/05-data-types/02-number/article.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
let billion = 1000000000;
1717
```
1818

19-
但在现实生活中,我们通常避免写一长串零,因为它很容易打错。另外,我们很懒。我们通常会将 10 亿写成 `"1bn"`,或将 72 亿写成 `"7.3bn"`。对于大多数大的数字来说都是如此。
19+
但在现实生活中,我们通常避免写一长串零,因为它很容易打错。另外,我们很懒。我们通常会将 10 亿写成 `"1bn"`,或将 73 亿写成 `"7.3bn"`。对于大多数大的数字来说都是如此。
2020

2121
在 JavaScript 中,我们通过在数字后附加字母 "e",并指定零的数量来缩短数字:
2222

0 commit comments

Comments
 (0)