From 5a6be36ee83e48efa633d0b8a6655f4c1817672e Mon Sep 17 00:00:00 2001 From: RyanAmeri <64014419+RyanAmeri@users.noreply.github.com> Date: Sat, 2 May 2020 07:29:23 +1000 Subject: [PATCH] Updated to show Edge now supports BigInt --- 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 cce9267d..6e92eb99 100644 --- a/1-js/02-first-steps/05-types/article.md +++ b/1-js/02-first-steps/05-types/article.md @@ -78,7 +78,7 @@ const bigInt = 1234567890123456789012345678901234567890n; As `BigInt` numbers are rarely needed, we devoted them a separate chapter . ```smart header="Compatability issues" -Right now `BigInt` is supported in Firefox and Chrome, but not in Safari/IE/Edge. +Right now `BigInt` is supported in Firefox/Chrome/Edge, but not in Safari/IE. ``` ## String