Skip to content

Commit 26505f3

Browse files
authored
Merge pull request #2121 from zzy0302/master
PR for issues/2119
2 parents 8cb4268 + 3a64e50 commit 26505f3

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

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

+4-1
Original file line numberDiff line numberDiff line change
@@ -81,10 +81,13 @@ const bigInt = 1234567890123456789012345678901234567890n;
8181

8282
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.
8383

84+
8485
```smart header="Compatibility issues"
85-
Right now `BigInt` is supported in Firefox/Chrome/Edge, but not in Safari/IE.
86+
Right now, `BigInt` is supported in Firefox/Chrome/Edge/Safari, but not in IE.
8687
```
8788

89+
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.
90+
8891
## String
8992

9093
A string in JavaScript must be surrounded by quotes.

0 commit comments

Comments
 (0)