From 7a9db40025c2f387b4b75b4bd0d32a18a63c0d87 Mon Sep 17 00:00:00 2001 From: t7yang Date: Mon, 10 Jan 2022 08:38:07 +0800 Subject: remove sup tag for zh-TW --- .../web/javascript/reference/errors/invalid_array_length/index.html | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'files/zh-tw/web/javascript/reference/errors/invalid_array_length') diff --git a/files/zh-tw/web/javascript/reference/errors/invalid_array_length/index.html b/files/zh-tw/web/javascript/reference/errors/invalid_array_length/index.html index ee2c5f08e4..89f7a02df6 100644 --- a/files/zh-tw/web/javascript/reference/errors/invalid_array_length/index.html +++ b/files/zh-tw/web/javascript/reference/errors/invalid_array_length/index.html @@ -22,11 +22,11 @@ RangeError: Invalid array buffer length (Chrome)

一個無效的陣列長度可能發生於以下幾種情形:

-

為什麼 Array  和 ArrayBuffer 的長度有限?   Array 和 ArrayBuffer 的屬性以一個32位元的非負整數表使,因此僅能儲存 0 到 232-1 的數值。

+

為什麼 Array  和 ArrayBuffer 的長度有限?   Array 和 ArrayBuffer 的屬性以一個32位元的非負整數表使,因此僅能儲存 0 到 2^32 - 1 的數值。

If you are creating an Array, using the constructor, you probably want to use the literal notation instead, as the first argument is interpreted as the length of the Array.

-- cgit v1.2.3-54-g00ecf