Lodash

是一个一致性、模块化、高性能的 JavaScript 实用工具库。

“Object” 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)

数组 Array

集合 Collection

日期 Date

函数 Function

Lang

数学 Math

数字 Number

对象 Object

Seq

字符串 String

实用函数 Util

Properties

Methods