Function.length - JavaScript 编辑
The length
property indicates the number of parameters expected by the function.
The source for this interactive example is stored in a GitHub repository. If you'd like to contribute to the interactive examples project, please clone https://github.com/mdn/interactive-examples and send us a pull request.
The source for this interactive example is stored in a GitHub repository. If you'd like to contribute to the interactive examples project, please clone https://github.com/mdn/interactive-examples and send us a pull request.Property attributes of Function.length | |
---|---|
Writable | no |
Enumerable | no |
Configurable | yes |
Description
length
is a property of a function object, and indicates how many arguments the function expects, i.e. the number of formal parameters. This number excludes the rest parameter and only includes parameters before the first one with a default value. By contrast, arguments.length
is local to a function and provides the number of arguments actually passed to the function.
Data property of the Function constructor
The Function
constructor is itself a Function
object. Its length
data property has a value of 1. The property attributes are: Writable: false
, Enumerable: false
, Configurable: true
.
Property of the Function prototype object
The length property of the Function
prototype object has a value of 0.
Examples
Using function length
console.log(Function.length); /* 1 */
console.log((function() {}).length); /* 0 */
console.log((function(a) {}).length); /* 1 */
console.log((function(a, b) {}).length); /* 2 etc. */
console.log((function(...args) {}).length);
// 0, rest parameter is not counted
console.log((function(a, b = 1, c) {}).length);
// 1, only parameters before the first one with
// a default value is counted
Specifications
Specification |
---|
ECMAScript (ECMA-262) The definition of 'Function.length' in that specification. |
Browser compatibility
BCD tables only load in the browser
See also
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论