関数の引数の数を取得
関数の引数の数を取得するには、function.length
プロパティを使用します。
構文
var functionCount = function.length;
戻り値 | functionCount | 引数の数 |
---|
サンプルコード
JavaScript
var func = function(a, b, c, d, e, f) {
// ...
};
var functionCount = func.length;
alert(functionCount); // 6