From 49e1c9e4e995f45e2b1fd202dcc8fe165a3a8ef6 Mon Sep 17 00:00:00 2001
From: Masahiro FUJIMOTO <mfujimot@gmail.com>
Date: Wed, 12 Jan 2022 22:16:44 +0900
Subject: 2021/07/21 時点の英語版に同期
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

---
 .../sharedarraybuffer/bytelength/index.md          | 49 +++++++++-------------
 1 file changed, 19 insertions(+), 30 deletions(-)

(limited to 'files/ja/web/javascript/reference/global_objects/sharedarraybuffer')

diff --git a/files/ja/web/javascript/reference/global_objects/sharedarraybuffer/bytelength/index.md b/files/ja/web/javascript/reference/global_objects/sharedarraybuffer/bytelength/index.md
index 8a2f170890..4cbf7bb16e 100644
--- a/files/ja/web/javascript/reference/global_objects/sharedarraybuffer/bytelength/index.md
+++ b/files/ja/web/javascript/reference/global_objects/sharedarraybuffer/bytelength/index.md
@@ -4,50 +4,39 @@ slug: Web/JavaScript/Reference/Global_Objects/SharedArrayBuffer/byteLength
 tags:
   - JavaScript
   - Property
-  - Shared Memory
+  - 共有メモリー
   - SharedArrayBuffer
-  - TypedArrays
+  - 型付き配列
+browser-compat: javascript.builtins.SharedArrayBuffer.byteLength
 translation_of: Web/JavaScript/Reference/Global_Objects/SharedArrayBuffer/byteLength
 ---
-<div>{{JSRef}}</div>
+{{JSRef}}
 
-<p><strong><code>byteLength</code></strong> アクセサープロパティは 、{{jsxref("SharedArrayBuffer")}} の長さをバイト単位で表します。</p>
+**`byteLength`** アクセサープロパティは 、{{jsxref("SharedArrayBuffer")}} の長さをバイト単位で表します。
 
-<div>{{EmbedInteractiveExample("pages/js/sharedarraybuffer-bytelength.html","shorter")}}</div>
+{{EmbedInteractiveExample("pages/js/sharedarraybuffer-bytelength.html","shorter")}}
 
-<div class="hidden">このデモのソースファイルは GitHub リポジトリに格納されています。デモプロジェクトに協力したい場合は、 <a href="https://github.com/mdn/interactive-examples">https://github.com/mdn/interactive-examples</a> をクローンしてプルリクエストを送信してください。</div>
+## 解説
 
-<h2 id="Description" name="Description">解説</h2>
+`byteLength` プロパティは、 set アクセサー関数が `undefined` であるアクセサープロパティです。つまり、このプロパティは読み取り専用です。値は共有配列が生成されたときに決定され、変更できません。
 
-<p><code>byteLength</code> プロパティは、セットアクセサー関数が <code>undefined</code> であるアクセサープロパティです。つまり、このプロパティは読み取り専用です。値は共有配列が生成されたときに決定され、変更できません。</p>
+## 例
 
-<h2 id="Examples" name="Examples">例</h2>
+### byteLength の使用
 
-<h3 id="Using_byteLength" name="Using_byteLength">byteLength の使用</h3>
-
-<pre class="brush:js notranslate">var sab = new SharedArrayBuffer(1024);
+```js
+var sab = new SharedArrayBuffer(1024);
 sab.byteLength; // 1024
-</pre>
+```
 
-<h2 id="Specifications" name="Specifications">仕様書</h2>
+## 仕様書
 
-<table class="standard-table">
- <tbody>
-  <tr>
-   <th scope="col">仕様書</th>
-  </tr>
-  <tr>
-   <td>{{SpecName('ESDraft', '#sec-get-sharedarraybuffer.prototype.bytelength', 'SharedArrayBuffer.prototype.byteLength')}}</td>
-  </tr>
- </tbody>
-</table>
+{{Specifications}}
 
-<h2 id="Browser_compatibility" name="Browser_compatibility">ブラウザーの互換性</h2>
+## ブラウザーの互換性
 
-<p>{{Compat("javascript.builtins.SharedArrayBuffer.byteLength")}}</p>
+{{Compat}}
 
-<h2 id="See_also" name="See_also">関連情報</h2>
+## 関連情報
 
-<ul>
- <li>{{jsxref("SharedArrayBuffer")}}</li>
-</ul>
+- {{jsxref("SharedArrayBuffer")}}
-- 
cgit v1.2.3-54-g00ecf