Skip to content

Commit d6e0376

Browse files
authored
Remove BigInt IE incompatibility part (#3709)
* Remove BigInt IE incompatibility part As Internet Explorer was retired years ago, this paragraph is not needed anymore, so I deleted that line. * Delete link to MDN BigInt compatibility table Unimportant link: almost total compatibility since the appearance of zhe `BigInt` type.
1 parent 815fafa commit d6e0376

File tree

1 file changed

+0
-7
lines changed

1 file changed

+0
-7
lines changed

1-js/02-first-steps/05-types/article.md

-7
Original file line numberDiff line numberDiff line change
@@ -94,13 +94,6 @@ const bigInt = 1234567890123456789012345678901234567890n;
9494

9595
As `BigInt` numbers are rarely needed, we don't cover them here, but devoted them a separate chapter <info:bigint>. Read it when you need such big numbers.
9696
97-
98-
```smart header="Compatibility issues"
99-
Right now, `BigInt` is supported in Firefox/Chrome/Edge/Safari, but not in IE.
100-
```
101-
102-
You can check [*MDN* BigInt compatibility table](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/BigInt#Browser_compatibility) to know which versions of a browser are supported.
103-
10497
## String
10598
10699
A string in JavaScript must be surrounded by quotes.

0 commit comments

Comments
 (0)