Merge pull request #2437 from lumosmind/patch-68

typo
This commit is contained in:
Ilya Kantor 2021-01-13 21:31:54 +03:00 committed by GitHub
commit 99b2a0928f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -16,7 +16,7 @@ Imagine we need to write 1 billion. The obvious way is:
let billion = 1000000000;
```
We also can use underscope `_` as the separator:
We also can use underscore `_` as the separator:
```js
let billion = 1_000_000_000;