Skip to content

Commit cfe7513

Browse files
authored
Update about.md
1 parent 5af57b5 commit cfe7513

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

concepts/numbers/about.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ Numbers may also be expressed in literal forms like `0b101`, `0o13`, `0x0A`. Lea
2626
### Exponential Notation
2727

2828
The E-notation indicates a number that should be multiplied by 10 raised to a given power.
29-
The format of E-notation is to have a number, followed by `e` or `E`, than by the power of 10 to multiply by.
29+
The format of E-notation is to have a number, followed by `e` or `E`, then by the power of 10 to multiply by.
3030

3131
```javascript
3232
const num = 3.125e7;
@@ -37,7 +37,7 @@ const num = 3.125e7;
3737
E-notation can also be used to represent very small numbers:
3838

3939
```javascript
40-
const num = 325987e-6; // Equals to 0. 325987
40+
const num = 325987e-6; // Equals 0.325987
4141
// The notation essentially says, "Take 325987 and multiply it by 10^-6.
4242
```
4343

@@ -153,7 +153,7 @@ isFinite(NaN); // => false
153153

154154
`+0` or `-0` are distinct numbers in JavaScript. They can be produced if you represented a number, that is so small that it is indistinguishable from 0.
155155
The signed zero allows you to record “from which direction” you approached zero; that is, what sign the number had before it was considered zero.
156-
It is best practise to pretend there's only one zero.
156+
It is best practice to pretend there's only one zero.
157157

158158
## Comparison
159159

0 commit comments

Comments
 (0)