Function.prototype
Function.prototype
Function.prototype
属性存储了Function
的原型对象。
描述
Function对象继承自 Function.prototype 属性。因此,Function.prototype
不能被修改。
属性
Function.arguments
以数组形式获取传入函数的所有参数。此属性已被arguments
替代。Function.arity用于指定的函数的参数的个数,但已被删除。使用length属性代替。
方法
Function.prototype.apply()
在一个对象的上下文中应用另一个对象的方法;参数能够以数组形式传入。
规范
Specification | Status | Comment |
---|---|---|
ECMAScript 1st Edition (ECMA-262) | Standard | Initial definition. Implemented in JavaScript 1.1 |
ECMAScript 5.1 (ECMA-262)The definition of 'Function.prototype' in that specification. | Standard | |
ECMAScript 2015 (6th Edition, ECMA-262)The definition of 'Function.prototype' in that specification. | Standard | |
ECMAScript Latest Draft (ECMA-262)The definition of 'Function.prototype' in that specification. | Living Standard | |
浏览器兼容性
Feature | Chrome | Edge | Firefox (Gecko) | Internet Explorer | Opera | Safari |
---|---|---|---|---|---|---|
Basic support | (Yes) | (Yes) | (Yes) | (Yes) | (Yes) | (Yes) |
Feature | Android | Chrome for Android | Edge | Firefox Mobile (Gecko) | IE Mobile | Opera Mobile | Safari Mobile |
---|---|---|---|---|---|---|---|
Basic support | (Yes) | (Yes) | (Yes) | (Yes) | (Yes) | (Yes) | (Yes) |