From 11b4998dcab1cade26ceb23c17d76189e09df671 Mon Sep 17 00:00:00 2001 From: zhilv Date: Tue, 9 Dec 2025 10:06:42 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E4=BF=AE=E5=A4=8D=E5=8F=98=E9=87=8F?= =?UTF-8?q?=E5=90=8D=E5=BC=95=E7=94=A8=E9=94=99=E8=AF=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Web/test7/index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Web/test7/index.html b/Web/test7/index.html index 52d0692..0025d49 100644 --- a/Web/test7/index.html +++ b/Web/test7/index.html @@ -59,7 +59,7 @@ let arr5 = [1, 2, 3, 4]; let strJoin = arr5.join("-"); let strSplit = strJoin.split("-"); - console.log(`arr5: ${arr4}, strJoin: ${strJoin}, strSplit: ${strSplit}`); + console.log(`arr5: ${arr5}, strJoin: ${strJoin}, strSplit: ${strSplit}`); let arr6 = ['A', 'B', 'C']; let arr7 = [true, false]; console.log(`arr6: ${arr6}, arr7: ${arr7}, arr6.concat(arr7): ${arr6.concat(arr7)}`);