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 1/6] 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 From 26e6412262661975ca2a8b7d472fae33f3a8f498 Mon Sep 17 00:00:00 2001 From: zzy0302 <503652983@qq.com> Date: Thu, 17 Sep 2020 16:53:35 +0800 Subject: [PATCH 2/6] Update article.md --- 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 b433477c..aec2cf83 100644 --- a/1-js/02-first-steps/05-types/article.md +++ b/1-js/02-first-steps/05-types/article.md @@ -82,9 +82,10 @@ 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. [More Detial](https://caniuse.com/?search=bigint) +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) about BigInt compatibility. ## String From 2f37f1c40bf4c9696bfc83f2ad9cf1ef683fa147 Mon Sep 17 00:00:00 2001 From: zzy0302 <503652983@qq.com> Date: Thu, 17 Sep 2020 16:54:45 +0800 Subject: [PATCH 3/6] Update article.md --- 1-js/02-first-steps/05-types/article.md | 2 +- 1 file changed, 1 insertion(+), 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 aec2cf83..537496e1 100644 --- a/1-js/02-first-steps/05-types/article.md +++ b/1-js/02-first-steps/05-types/article.md @@ -85,7 +85,7 @@ As `BigInt` numbers are rarely needed, we don't cover them here, but devoted the 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) about BigInt compatibility. +[More Details](https://caniuse.com/?search=bigint) about BigInt compatibility. ## String 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 4/6] 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. From 148026355349db535969a6690f4667481756af70 Mon Sep 17 00:00:00 2001 From: zzy0302 <503652983@qq.com> Date: Thu, 17 Sep 2020 23:15:42 +0800 Subject: [PATCH 5/6] Update article.md --- 1-js/02-first-steps/05-types/article.md | 6 ++++-- 1 file changed, 4 insertions(+), 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 34cb16ce..44a12611 100644 --- a/1-js/02-first-steps/05-types/article.md +++ b/1-js/02-first-steps/05-types/article.md @@ -81,10 +81,12 @@ 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 Firefox/Chrome/Edge/Safari, but not in IE. ``` -[More Details](https://caniuse.com/?search=bigint) about BigInt compatibility. + +You can check [*Can I Use* BigInt compatibility table](https://caniuse.com/bigint) to know which versions of a browser are supported. ## String From 3a64e5055b0e83b6740b252eb17fa75ff62a6fa9 Mon Sep 17 00:00:00 2001 From: zzy0302 <503652983@qq.com> Date: Mon, 21 Sep 2020 11:31:06 +0800 Subject: [PATCH 6/6] Update 1-js/02-first-steps/05-types/article.md Co-authored-by: Muhammed Zakir <8190126+MuhammedZakir@users.noreply.github.com> --- 1-js/02-first-steps/05-types/article.md | 2 +- 1 file changed, 1 insertion(+), 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 44a12611..66176000 100644 --- a/1-js/02-first-steps/05-types/article.md +++ b/1-js/02-first-steps/05-types/article.md @@ -86,7 +86,7 @@ As `BigInt` numbers are rarely needed, we don't cover them here, but devoted the Right now, `BigInt` is supported in Firefox/Chrome/Edge/Safari, but not in IE. ``` -You can check [*Can I Use* BigInt compatibility table](https://caniuse.com/bigint) to know which versions of a browser are supported. +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. ## String