From 9964e3f576ecd63d02cd3f59295706c2e2887025 Mon Sep 17 00:00:00 2001 From: zzy0302 <503652983@qq.com> Date: Thu, 17 Sep 2020 16:55:35 +0800 Subject: [PATCH] Update article.md --- 1-js/02-first-steps/05-types/article.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/1-js/02-first-steps/05-types/article.md b/1-js/02-first-steps/05-types/article.md index 537496e1..34cb16ce 100644 --- a/1-js/02-first-steps/05-types/article.md +++ b/1-js/02-first-steps/05-types/article.md @@ -82,8 +82,7 @@ const bigInt = 1234567890123456789012345678901234567890n; As `BigInt` numbers are rarely needed, we don't cover them here, but devoted them a separate chapter . Read it when you need such big numbers. ```smart header="Compatibility issues" -Right now `BigInt` is supported in the latest version Firefox/Chrome/Edge and Safari with iOS 14, but not in IE. - +Right now `BigInt` is supported in the latest version Firefox/Chrome/Edge and Safari with iOS 14, but not in IE. ``` [More Details](https://caniuse.com/?search=bigint) about BigInt compatibility.