Lodash - functionsIn 方法



语法

_.functionsIn(object)

创建一个从 object 的自身可枚举属性和继承可枚举属性中获取方法属性名称的数组。

参数

  • object (Object) − 要检查的对象。

输出

  • (Array) − 返回方法名称。

范例

var _ = require('lodash');
 
function Foo() {
   this.a = _.constant('a');
   this.b = _.constant('b');
}
 
Foo.prototype.c = _.constant('c');
console.log(_.functionsIn(new Foo));

将上述程序保存在 tester.js 中。运行以下命令以执行此程序。

命令

\>node tester.js

输出

[ 'a', 'b', 'c' ]
lodash_object.htm
广告