aboutsummaryrefslogtreecommitdiff
path: root/files/zh-cn/web/javascript/reference/global_objects/function
diff options
context:
space:
mode:
authorSepush <sepush@outlook.com>2021-09-07 11:13:01 +0800
committerGitHub <noreply@github.com>2021-09-07 11:13:01 +0800
commite4cf3f5e0b02d35d3ee71a034b4b51063a4f5fc9 (patch)
treee95ca8bc6a48e4492524ea83cfd926859fc65621 /files/zh-cn/web/javascript/reference/global_objects/function
parentad9ea64ce997fb0bf4e8bef04605ec4b1cff1147 (diff)
downloadtranslated-content-e4cf3f5e0b02d35d3ee71a034b4b51063a4f5fc9.tar.gz
translated-content-e4cf3f5e0b02d35d3ee71a034b4b51063a4f5fc9.tar.bz2
translated-content-e4cf3f5e0b02d35d3ee71a034b4b51063a4f5fc9.zip
Fix typo in Web/JavaScript/Reference/Global_Objects/Function/apply, zh-CN (#2371)
fix typo `便历` should be `遍历`
Diffstat (limited to 'files/zh-cn/web/javascript/reference/global_objects/function')
-rw-r--r--files/zh-cn/web/javascript/reference/global_objects/function/apply/index.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/files/zh-cn/web/javascript/reference/global_objects/function/apply/index.html b/files/zh-cn/web/javascript/reference/global_objects/function/apply/index.html
index 3e87c9ded3..0bf0414cf8 100644
--- a/files/zh-cn/web/javascript/reference/global_objects/function/apply/index.html
+++ b/files/zh-cn/web/javascript/reference/global_objects/function/apply/index.html
@@ -66,7 +66,7 @@ console.info(array); // ["a", "b", 0, 1, 2]
<h3 id="apply_and_built-in_functions" name="apply_and_built-in_functions">使用<code>apply</code>和内置函数</h3>
-<p>对于一些需要写循环以便历数组各项的需求,我们可以用<code>apply</code>完成以避免循环。</p>
+<p>对于一些需要写循环以遍历数组各项的需求,我们可以用<code>apply</code>完成以避免循环。</p>
<p>下面是示例,我们将用<code>Math.max</code>/<code>Math.min</code>求得数组中的最大/小值。</p>