此页面由社区从英文翻译而来。了解更多并加入 MDN Web Docs 社区。
arguments.length
Baseline Widely available
This feature is well established and works across many devices and browser versions. It’s been available across browsers since 2015年7月.
arguments.length 数据属性包含传递给函数的参数数量。
In this article
值
一个非负整数。
arguments.length 的属性特性 | |
|---|---|
| 可写 | 是 |
| 可枚举 | 否 |
| 可配置 | 是 |
描述
arguments.length 属性提供了实际传递给函数的参数数量。传递的参数数量可能多于或少于定义的参数数量(参见Function.prototype.length)。例如下面的函数:
js
function func1(a, b, c) { console.log(arguments.length);}func1.length 返回3,因为func1 声明了三个形式参数。然而,func1(1, 2, 3, 4, 5) 会记录5,因为func1 被调用时传递了五个参数。同样地,func1(1) 会记录1,因为func1 被调用时传递了一个参数。
示例
>使用 arguments.length
在此示例中,我们定义了一个可以将两个或多个数字相加的函数。
js
function adder(base /*, num1, …, numN */) { base = Number(base); for (let i = 1; i < arguments.length; i++) { base += Number(arguments[i]); } return base;}规范
| Specification |
|---|
| ECMAScript® 2026 Language Specification> # sec-arguments-exotic-objects> |