aboutsummaryrefslogtreecommitdiff
path: root/files/zh-cn/web/javascript/reference/global_objects/uint16array
diff options
context:
space:
mode:
Diffstat (limited to 'files/zh-cn/web/javascript/reference/global_objects/uint16array')
-rw-r--r--files/zh-cn/web/javascript/reference/global_objects/uint16array/index.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/files/zh-cn/web/javascript/reference/global_objects/uint16array/index.html b/files/zh-cn/web/javascript/reference/global_objects/uint16array/index.html
index 9479c4831e..62adba345b 100644
--- a/files/zh-cn/web/javascript/reference/global_objects/uint16array/index.html
+++ b/files/zh-cn/web/javascript/reference/global_objects/uint16array/index.html
@@ -106,7 +106,7 @@ translation_of: Web/JavaScript/Reference/Global_Objects/Uint16Array
<h3 id="Different_ways_to_create_a_Uint16Array">Different ways to create a Uint16Array</h3>
-<pre class="brush: js notranslate">// 长度
+<pre class="brush: js">// 长度
var uint16 = new Uint16Array(2);
uint16[0] = 42;
console.log(uint16[0]); // 42