From 9192d00990f74cf4a8c2e7bc3e4cea6ebe820f77 Mon Sep 17 00:00:00 2001 From: familyboat <84062528+familyboat@users.noreply.github.com> Date: Thu, 10 Oct 2024 14:06:57 +0800 Subject: [PATCH] Update files/zh-cn/learn/getting_started_with_the_web/javascript_basics/index.md Co-authored-by: A1lo --- .../getting_started_with_the_web/javascript_basics/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/files/zh-cn/learn/getting_started_with_the_web/javascript_basics/index.md b/files/zh-cn/learn/getting_started_with_the_web/javascript_basics/index.md index b64f154c9c2e0e..fb3c0783dd4f13 100644 --- a/files/zh-cn/learn/getting_started_with_the_web/javascript_basics/index.md +++ b/files/zh-cn/learn/getting_started_with_the_web/javascript_basics/index.md @@ -307,7 +307,7 @@ multiply(20, 20); multiply(0.5, 3); ``` -> [!NOTE] [`return`](/zh-CN/docs/Web/JavaScript/Reference/Statements/return) 语句告诉浏览器将 `result` 变量返回到函数外面。这一点很有必要,因为函数内定义的变量只能在函数内使用。这叫做变量的{{Glossary("Scope", "作用域")}}。(阅读更多有关[变量的作用域](/zh-CN/docs/Web/JavaScript/Guide/Grammar_and_types#变量的作用域)的内容。) +> **备注:** [`return`](/zh-CN/docs/Web/JavaScript/Reference/Statements/return) 语句告诉浏览器将 `result` 变量返回到函数外面。这一点很有必要,因为函数内定义的变量只能在函数内使用。这叫做变量的{{Glossary("Scope", "作用域")}}。(阅读更多有关[变量的作用域](/zh-CN/docs/Web/JavaScript/Guide/Grammar_and_types#变量的作用域)的内容。) ### 事件