aboutsummaryrefslogtreecommitdiff
path: root/files/ja/web/javascript/reference/global_objects/array/isarray/index.html
blob: baf6a3d87a57da38bbaef62bd2d940162e5f5a8f (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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
---
title: Array.isArray()
slug: Web/JavaScript/Reference/Global_Objects/Array/isArray
tags:
  - Array
  - ECMAScript5
  - JavaScript
  - Method
  - Reference
  - polyfill
translation_of: Web/JavaScript/Reference/Global_Objects/Array/isArray
---
<div>{{JSRef}}</div>

<p><code><strong>Array.isArray()</strong></code> メソッドは、渡された値が {{jsxref("Array")}} かどうかを判断します。</p>

<pre class="brush: js notranslate">Array.isArray([1, 2, 3]);  // true
Array.isArray({foo: 123}); // false
Array.isArray('foobar');   // false
Array.isArray(undefined);  // false
</pre>

<h2 id="Syntax" name="Syntax">構文</h2>

<pre class="syntaxbox notranslate">Array.isArray(<var>value</var>)</pre>

<h3 id="Parameters" name="Parameters">引数</h3>

<dl>
 <dt><var>value</var></dt>
 <dd>チェックするオブジェクト。</dd>
</dl>

<h3 id="Return_value" name="Return_value">返値</h3>

<p>値が {{jsxref("Array")}} の場合は <code>true</code> です。そうでなければ  <code>false</code> を返します。</p>

<h2 id="Description" name="Description">解説</h2>

<p>値が {{jsxref("Array")}} の場合は <code>true</code> が返ります。それ以外の場合は <code>false</code> が返ります。</p>

<p>詳しくは、<a href="http://web.mit.edu/jwalden/www/isArray.html">“Determining with absolute accuracy whether or not a JavaScript object is an array”</a> を参照してください。{{jsxref("TypedArray")}} のインスタンスが与えられると、常に <code>false</code> が返されます。</p>


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

<p>次のコードを他のコードよりも前に記述する事により、ネイティブで実装されていなくても、<code>Array.isArray()</code> が使用可能になります。</p>

<pre class="brush: js notranslate">if (!Array.isArray) {
  Array.isArray = function(arg) {
    return Object.prototype.toString.call(arg) === '[object Array]';
  };
}
</pre>


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

<pre class="brush: js notranslate">// 以下の呼び出しはすべて true を返します
Array.isArray([]);
Array.isArray([1]);
Array.isArray(new Array());
Array.isArray(new Array('a', 'b', 'c', 'd'));
Array.isArray(new Array(3));
// あまり知られていないものの Array.prototype は配列です
Array.isArray(Array.prototype);

// 以下の呼び出しはすべて false を返します
Array.isArray();
Array.isArray({});
Array.isArray(null);
Array.isArray(undefined);
Array.isArray(17);
Array.isArray('Array');
Array.isArray(true);
Array.isArray(false);
Array.isArray({ __proto__: Array.prototype });
</pre>

<h3 id="instanceof_vs_isArray" name="instanceof_vs_isArray"><code>instanceof</code><code>isArray</code></h3>

<p><code>Array</code> のインスタンスをチェックする際、<code>Array.isArray</code><code>iframes</code> で動作するので、<code>instanceof</code> よりも推奨されます。</p>

<pre class="brush: js notranslate">var iframe = document.createElement('iframe');
document.body.appendChild(iframe);
xArray = window.frames[window.frames.length-1].Array;
var arr = new xArray(1,2,3); // [1,2,3]

// 配列を正しくチェックできます
Array.isArray(arr);  // true
// iframe を介して配列を正しくチェックできません
arr instanceof Array; // false
</pre>

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

<table class="standard-table">
 <tbody>
  <tr>
   <th scope="col">仕様書</th>
  </tr>
  <tr>
   <td>{{SpecName('ESDraft', '#sec-array.isarray', 'Array.isArray')}}</td>
  </tr>
 </tbody>
</table>

<h2 id="Browser_compatibility" name="Browser_compatibility">ブラウザー実装状況</h2>

<div>


<p>{{Compat("javascript.builtins.Array.isArray")}}</p>
</div>

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

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