What is the length property of the Function, Array, and Object constructors?
问题 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",