Lodash - keysIn 方法
语法
_.keysIn(object)
创建 object 自有和继承的可枚举属性的数组。
参数
object (对象) - 要查询的对象。
输出
(数组) - 返回属性名称的数组。
示例
var _ = require('lodash'); function Foo() { this.a = 1; this.b = 2; } Foo.prototype.c = 3; var result = _.keysIn(new Foo); console.log(result);
将上述程序保存在 tester.js 中。运行以下命令来执行此程序。
命令
\>node tester.js
输出
[ 'a', 'b', 'c' ]
lodash_object.htm
广告