diff options
author | alexanderhess <Hess.alexander1@web.de> | 2021-03-30 18:26:40 +0200 |
---|---|---|
committer | Irvin <irvinfly@gmail.com> | 2021-04-03 01:44:32 +0800 |
commit | 423408ef224494fe88fa73a06da511528ffc874a (patch) | |
tree | 8188213e2473de52eac6906fc8bc215b0073628e /files/zh-cn/web/javascript/reference | |
parent | 909051892b9516117d7ba12fb6bf0aa91c587ee7 (diff) | |
download | translated-content-423408ef224494fe88fa73a06da511528ffc874a.tar.gz translated-content-423408ef224494fe88fa73a06da511528ffc874a.tar.bz2 translated-content-423408ef224494fe88fa73a06da511528ffc874a.zip |
Fixed the typo, Fixes #321
Diffstat (limited to 'files/zh-cn/web/javascript/reference')
-rw-r--r-- | files/zh-cn/web/javascript/reference/global_objects/array/values/index.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/files/zh-cn/web/javascript/reference/global_objects/array/values/index.html b/files/zh-cn/web/javascript/reference/global_objects/array/values/index.html index cf9b1c7c82..6d84257551 100644 --- a/files/zh-cn/web/javascript/reference/global_objects/array/values/index.html +++ b/files/zh-cn/web/javascript/reference/global_objects/array/values/index.html @@ -51,7 +51,7 @@ iterator.next()["value"]; // "c" iterator.next(); // Object { value: "d", done: false } iterator.next(); // Object { value: "e", done: false } iterator.next(); // Object { value: undefined, done: true } -iteraroe.next().value; // undefined</pre> +iterator.next().value; // undefined</pre> <div class="blockIndicator warning"> <p>一次性:数组迭代器是一次性的,或者说临时对象</p> |