fix a small typo

This commit is contained in:
digital-bw 2022-09-24 19:00:37 +06:00 committed by GitHub
parent ff4ef57c8c
commit dfb97dc9eb
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -352,7 +352,7 @@ Please note that an empty or a space-only string is treated as `0` in all numeri
```js run
alert( Number.isFinite(123) ); // true
alert( Number.isFinite(Infinity) ); //false
alert( Number.isFinite(Infinity) ); // false
alert( Number.isFinite(2 / 0) ); // false
// Note the difference: