From c8b782eb6112378e5ebec1deed7b0832aae63a62 Mon Sep 17 00:00:00 2001 From: Vesper <64687700+Vesper0704@users.noreply.github.com> Date: Tue, 15 Nov 2022 17:36:15 +0800 Subject: [PATCH] Update decodeURIComponent.md --- .../the-global-object/function-properties/decodeURIComponent.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/standard-built-in-objects/the-global-object/function-properties/decodeURIComponent.md b/docs/standard-built-in-objects/the-global-object/function-properties/decodeURIComponent.md index 1322ba5a3..7bf8234fc 100644 --- a/docs/standard-built-in-objects/the-global-object/function-properties/decodeURIComponent.md +++ b/docs/standard-built-in-objects/the-global-object/function-properties/decodeURIComponent.md @@ -34,7 +34,7 @@ decodeURIComponent(encodedURIString); ## 示例 ```js -var a = 'Hello JavaScript'; +var a = '你好JavaScript'; var b = encodeURIComponent(a); console.log(b);