Merge pull request #2959 from Rnbsov/patch-25

minor grammar fix
This commit is contained in:
Ilya Kantor 2022-05-03 23:50:55 +04:00 committed by GitHub
commit 54c3fb9d1c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -178,7 +178,7 @@ There are two ways to do so:
alert( num.toFixed(1) ); // "12.4"
```
Please note that result of `toFixed` is a string. If the decimal part is shorter than required, zeroes are appended to the end:
Please note that the result of `toFixed` is a string. If the decimal part is shorter than required, zeroes are appended to the end:
```js run
let num = 12.34;