aboutsummaryrefslogtreecommitdiff
path: root/files/zh-cn/web/javascript/reference/global_objects/map/entries
diff options
context:
space:
mode:
authorMDN <actions@users.noreply.github.com>2021-07-17 00:35:32 +0000
committerMDN <actions@users.noreply.github.com>2021-07-17 00:35:32 +0000
commit7267c8c97a1e4d170a0a68e34bc0b3e029f465c7 (patch)
tree29aa504788a86f837520d06e7e5cfab33aeacf3d /files/zh-cn/web/javascript/reference/global_objects/map/entries
parenta53bff5bca8db992fdf2ac0c68a82e7a1a53ab7e (diff)
downloadtranslated-content-7267c8c97a1e4d170a0a68e34bc0b3e029f465c7.tar.gz
translated-content-7267c8c97a1e4d170a0a68e34bc0b3e029f465c7.tar.bz2
translated-content-7267c8c97a1e4d170a0a68e34bc0b3e029f465c7.zip
[CRON] sync translated content
Diffstat (limited to 'files/zh-cn/web/javascript/reference/global_objects/map/entries')
-rw-r--r--files/zh-cn/web/javascript/reference/global_objects/map/entries/index.html78
1 files changed, 0 insertions, 78 deletions
diff --git a/files/zh-cn/web/javascript/reference/global_objects/map/entries/index.html b/files/zh-cn/web/javascript/reference/global_objects/map/entries/index.html
deleted file mode 100644
index 0887bfa854..0000000000
--- a/files/zh-cn/web/javascript/reference/global_objects/map/entries/index.html
+++ /dev/null
@@ -1,78 +0,0 @@
----
-title: Map.prototype.entries()
-slug: Web/JavaScript/Reference/Global_Objects/Map/entries
-translation_of: Web/JavaScript/Reference/Global_Objects/Map/entries
-tags:
- - ECMAScript 2015
- - Iterator
- - JavaScript
- - Map
- - Method
- - Prototype
-browser-compat: javascript.builtins.Map.entries
----
-<div>{{JSRef}}</div>
-
-<p><code><strong>entries()</strong></code> 方法返回一个新的包含 <code>[key, value]</code> 对的 <code><strong>Iterator</strong></code> 对象,返回的迭代器的迭代顺序与 <code>Map</code> 对象的插入顺序相同。</p>
-
-<p>{{EmbedInteractiveExample("pages/js/map-prototype-entries.html")}}</p>
-
-<h2 id="语法">语法</h2>
-
-<pre><code><var>myMap</var>.entries()</code>
-</pre>
-
-<h3 id="返回值">返回值</h3>
-
-<p>一个新的 {{jsxref("Map")}} 迭代器对象.</p>
-
-<h2 id="示例">示例</h2>
-
-<h3 id="entries()的使用"><code>entries()</code>的使用</h3>
-
-<pre class="brush:js">var myMap = new Map();
-myMap.set("0", "foo");
-myMap.set(1, "bar");
-myMap.set({}, "baz");
-
-var mapIter = myMap.entries();
-
-console.log(mapIter.next().value); // ["0", "foo"]
-console.log(mapIter.next().value); // [1, "bar"]
-console.log(mapIter.next().value); // [Object, "baz"]
-</pre>
-
-<h2 id="规范">规范</h2>
-
-<table>
- <thead>
- <tr>
- <th scope="col">Specification</th>
- <th scope="col">Status</th>
- <th scope="col">Comment</th>
- </tr>
- </thead>
- <tbody>
- <tr>
- <td>{{SpecName('ESDraft', '#sec-map.prototype.entries', 'Map.prototype.entries')}}</td>
- <td>{{Spec2('ESDraft')}}</td>
- <td></td>
- </tr>
- <tr>
- <td>{{SpecName('ES2015', '#sec-map.prototype.entries', 'Map.prototype.entries')}}</td>
- <td>{{Spec2('ES2015')}}</td>
- <td>Initial definition.</td>
- </tr>
- </tbody>
-</table>
-
-<h2 id="浏览器兼容性">浏览器兼容性</h2>
-
-<p>{{Compat("javascript.builtins.Map.entries")}}</p>
-
-<h2 id="相关链接">相关链接</h2>
-
-<ul>
- <li>{{jsxref("Map.prototype.keys()")}}</li>
- <li>{{jsxref("Map.prototype.values()")}}</li>
-</ul>