From b5bdd6a4fdbc96ec4574acbc93aa426714826320 Mon Sep 17 00:00:00 2001 From: Percy Date: Thu, 19 Aug 2021 22:36:24 +0800 Subject: Use ^ instead of the tag in the
 tag

close #2135
---
 files/zh-cn/web/javascript/guide/grammar_and_types/index.html | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

(limited to 'files/zh-cn/web/javascript')

diff --git a/files/zh-cn/web/javascript/guide/grammar_and_types/index.html b/files/zh-cn/web/javascript/guide/grammar_and_types/index.html
index 0ea7538a96..8b00401fcc 100644
--- a/files/zh-cn/web/javascript/guide/grammar_and_types/index.html
+++ b/files/zh-cn/web/javascript/guide/grammar_and_types/index.html
@@ -447,8 +447,8 @@ console.log(a[0]); // 3
3.14
 -.2345789 // -0.23456789
--3.12e+12  // -3.12*1012
-.1e-23    // 0.1*10-23=10-24=1e-24
+-3.12e+12  // -3.12*10^12
+.1e-23    // 0.1*10^(-23)=10^(-24)=1e-24
 

对象字面量 (Object literals)

-- cgit v1.2.3-54-g00ecf