Merge pull request #3197 from digital-bw/patch-2

fix a small typo
This commit is contained in:
Ilya Kantor 2022-10-01 18:33:56 +02:00 committed by GitHub
commit 2180da8429
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: