服务器

Array

Collection

Date

Function

Lang

Math

Number

Object

Seq

String

Util

Properties

Methods

_.keysIn(object)

创建一个自己的继承的可枚举属性名称的数组 object

注意:非对象值被强制转换为对象。

版本

3.0.0

参数
  1. object (Object):要查询的对象。
返回

(Array):返回属性名称的数组。

function Foo() {
  this.a = 1;
  this.b = 2;
}
 
Foo.prototype.c = 3;
 
_.keysIn(new Foo);
// => ['a', 'b', 'c'] (iteration order is not guaranteed)