blob: f2442a8fd265db27272aad8c833a9980627316b6 (
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
|
---
title: arguments.length
slug: Web/JavaScript/Reference/Functions/arguments/length
tags:
- Functions
- JavaScript
- Property
- arguments
translation_of: Web/JavaScript/Reference/Functions/arguments/length
---
<div>{{jsSidebar("Functions")}}</div>
<p><strong><code>arguments.length</code></strong> プロパティは、関数に渡された引数の数が入ります。</p>
<h2 id="Description">解説</h2>
<p>arguments.length プロパティは、実際に関数に渡された引数の数を提供します。これは、定義されたパラメーターの数以上にも以下にもできます({{jsxref("Function.length")}} を見てください)。</p>
<h2 id="Examples">例</h2>
<h3 id="Using_arguments.length"><code>arguments.length</code> の使用</h3>
<p>この例では、2 つ以上の数を加算する関数を定義しています。</p>
<pre class="brush: js">function adder(base /*, n2, ... */) {
base = Number(base);
for (var i = 1; i < arguments.length; i++) {
base += Number(arguments[i]);
}
return base;
}
</pre>
<div class="note">
<p>{{jsxref("Function.length")}} と arguments.length の違いに注意してください</p>
</div>
<h2 id="Specifications">仕様書</h2>
<table class="standard-table">
<tbody>
<tr>
<th scope="col">仕様書</th>
</tr>
<tr>
<td>{{SpecName('ESDraft', '#sec-arguments-exotic-objects', 'Arguments Exotic Objects')}}</td>
</tr>
</tbody>
</table>
<h2 id="Browser_compatibility">ブラウザーの互換性</h2>
<p>{{Compat("javascript.functions.arguments.length")}}</p>
<h2 id="See_also">関連情報</h2>
<ul>
<li>{{jsxref("Function")}}</li>
<li>{{jsxref("Function.length")}}</li>
</ul>
|