From 7ab911c25fafe5e4fe1f2822f0a8610f7307b250 Mon Sep 17 00:00:00 2001 From: zzy0302 <503652983@qq.com> Date: Thu, 17 Sep 2020 16:52:17 +0800 Subject: [PATCH] Update article.md Safari in iOS14 support BigInt --- 1-js/02-first-steps/05-types/article.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/1-js/02-first-steps/05-types/article.md b/1-js/02-first-steps/05-types/article.md index 65411fc5..b433477c 100644 --- a/1-js/02-first-steps/05-types/article.md +++ b/1-js/02-first-steps/05-types/article.md @@ -82,7 +82,8 @@ 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 Firefox/Chrome/Edge, but not in Safari/IE. +Right now `BigInt` is supported in the latest version Firefox/Chrome/Edge and Safari with iOS 14, but not in IE. [More Detial](https://caniuse.com/?search=bigint) + ``` ## String