aboutsummaryrefslogtreecommitdiff
path: root/files/ja/web/javascript/reference/global_objects/arraybuffer/bytelength/index.html
blob: 5a62d4da655afd66250fd65743c1818ca51ca0dd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
---
title: ArrayBuffer.prototype.byteLength
slug: Web/JavaScript/Reference/Global_Objects/ArrayBuffer/byteLength
tags:
  - ArrayBuffer
  - JavaScript
  - Property
  - Prototype
translation_of: Web/JavaScript/Reference/Global_Objects/ArrayBuffer/byteLength
---
<div>{{JSRef}}</div>

<p><strong><code>byteLength</code></strong> アクセサープロパティは、{{jsxref("ArrayBuffer")}} の長さをバイト単位で表します。</p>

<div>{{EmbedInteractiveExample("pages/js/arraybuffer-bytelength.html")}}</div>

<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>

<p><code>byteLength</code> プロパティはアクセサープロパティで、 set アクセサー関数が <code>undefined</code>、つまりこのプロパティは読み取り専用です。値は配列が構築されるときに設定され、変更することができません。この <code>ArrayBuffer</code> が取り外された場合、このプロパティは 0 を返します。</p>

<h2 id="Examples" name="Examples"></h2>

<h3 id="Using_byteLength" name="Using_byteLength">byteLength の使用</h3>

<pre class="brush:js notranslate">var buffer = new ArrayBuffer(8);
buffer.byteLength; // 8
</pre>

<h2 id="Specifications" name="Specifications">仕様書</h2>

<table class="standard-table">
 <thead>
  <tr>
   <th scope="col">仕様書</th>
  </tr>
 </thead>
 <tbody>
  <tr>
   <td>{{SpecName('ESDraft', '#sec-get-arraybuffer.prototype.bytelength', 'ArrayBuffer.prototype.byteLength')}}</td>
  </tr>
 </tbody>
</table>

<h2 id="Browser_compatibility" name="Browser_compatibility">ブラウザーの互換性</h2>

<p>{{Compat("javascript.builtins.ArrayBuffer.byteLength")}}</p>

<h2 id="See_also" name="See_also">関連情報</h2>

<ul>
 <li>{{jsxref("ArrayBuffer")}}</li>
</ul>