This commit is contained in:
Mustafa Kemal Tuna 2021-01-13 21:29:13 +03:00 committed by GitHub
parent 15e6f2da5b
commit e95ca4b663
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; let billion = 1000000000;
``` ```
We also can use underscope `_` as the separator: We also can use underscore `_` as the separator:
```js ```js
let billion = 1_000_000_000; let billion = 1_000_000_000;