What is the length property of the Function, Array, and Object constructors?

帅比萌擦擦* 提交于 2019-12-10 04:33:28

问题


What is length static property of Function,Array and Object constructor?

Static methods makes sense but what about length static property?

Object.getOwnPropertyNames(Array)
["length", "name", "arguments", "caller", "prototype", "isArray"]

Object.getOwnPropertyNames(Function)
["length", "name", "arguments", "caller", "prototype"]

Note: I am getting answers about length property of Function.prototype that is not asked here.

Object.getOwnPropertyNames(Function.prototype)
["length", "name", "arguments", "caller", "constructor", "bind", "toString", "call", "apply"]

Object.getOwnPropertyNames(Object)
["length", "name", "arguments", "caller", "prototype", "keys", "create", "defineProperty", "defineProperties", "freeze", "getPrototypeOf", "getOwnPropertyDescriptor", "getOwnPropertyNames", "is", "isExtensible", "isFrozen", "isSealed", "preventExtensions", "seal"]

回答1:


Array, Function, and Object are all constructors, so they're all functions. The length property of a function specifies the number of (named) arguments that the function takes. From ECMA-262 3rd edition, section 15:

Every built-in Function object described in this section—whether as a constructor, an ordinary function, or both—has a length property whose value is an integer. Unless otherwise specified, this value is equal to the largest number of named arguments shown in the section headings for the function description, including optional parameters.

And as DCoder pointed out:

ECMA-262 3rd edition, sections 15.2.3, 15.3.3 and 15.4.3 specify that all these constructors have a length property, whose value is 1.

To your point about static fields: There is no such thing as static fields in JavaScript, as there are no classes in JavaScript. There are only primitive values, objects, and functions. Objects and functions (which behave as objects as well) have properties.

One thing that may be confusing is that Function is in fact a function. A little-known fact is that you can create functions using this constructor. For example:

var identity = new Function("a", "b", "return a")
console.log(identity(42))

The above will print 42. Now notice two things: Function actually takes arguments and does something with them; and I passed more than one argument to the Function constructor, even though Function.length is equal to 1. The result, identity, is also a function, whose length property is set to the value 2, since it's a function with two arguments.




回答2:


All the above mentioned are functions, which has a property length, saying tjhe number of arguments the function takes. Thats why they have length as static variable here.

fun = function( a) { alert(a); }
//fun.length = 1


来源:https://stackoverflow.com/questions/14050709/what-is-the-length-property-of-the-function-array-and-object-constructors

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!