aboutsummaryrefslogtreecommitdiff
path: root/files/zh-cn/web/javascript/reference/global_objects/set/values/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'files/zh-cn/web/javascript/reference/global_objects/set/values/index.html')
-rw-r--r--files/zh-cn/web/javascript/reference/global_objects/set/values/index.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/files/zh-cn/web/javascript/reference/global_objects/set/values/index.html b/files/zh-cn/web/javascript/reference/global_objects/set/values/index.html
index 846bd7421d..e8a5f552e6 100644
--- a/files/zh-cn/web/javascript/reference/global_objects/set/values/index.html
+++ b/files/zh-cn/web/javascript/reference/global_objects/set/values/index.html
@@ -22,7 +22,7 @@ translation_of: Web/JavaScript/Reference/Global_Objects/Set/values
<h2 id="语法">语法</h2>
-<pre class="syntaxbox notranslate"><code><em>mySet</em>.values();
+<pre class="syntaxbox"><code><em>mySet</em>.values();
</code></pre>
<h3 id="返回值">返回值</h3>
@@ -33,7 +33,7 @@ translation_of: Web/JavaScript/Reference/Global_Objects/Set/values
<h3 id="使用_values">使用 <code>values()</code></h3>
-<pre class="brush:js notranslate">var mySet = new Set();
+<pre class="brush:js">var mySet = new Set();
mySet.add('foo');
mySet.add('bar');
mySet.add('baz');