From b190700b6a4c52a471d8a39871cf796a94d7c6b0 Mon Sep 17 00:00:00 2001 From: Yi Feng <66539215+bigyifeng@users.noreply.github.com> Date: Thu, 27 Jul 2023 13:47:06 +0800 Subject: [PATCH] Update decodeURI.md MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 修改错误示例 --- .../the-global-object/function-properties/decodeURI.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/standard-built-in-objects/the-global-object/function-properties/decodeURI.md b/docs/standard-built-in-objects/the-global-object/function-properties/decodeURI.md index 9e0f6886b..d00a904ca 100644 --- a/docs/standard-built-in-objects/the-global-object/function-properties/decodeURI.md +++ b/docs/standard-built-in-objects/the-global-object/function-properties/decodeURI.md @@ -32,7 +32,7 @@ decodeURI(encodedURIString); ## 示例 ```js -let a = 'Hello JavaScript!'; +let a = '你好JavaScript!'; let b = encodeURI(a); console.log(b);