Lodash

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

“Object” Methods

_.keys(object)

创建一个 object 的自身可枚举属性名为数组。

Note: 非对象的值会被强制转换为对象,查看 ES spec 了解详情。

添加版本

0.1.0

参数

  1. object (Object): 要检索的对象。

返回

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

例子

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

数组 Array

集合 Collection

日期 Date

函数 Function

Lang

数学 Math

数字 Number

对象 Object

Seq

字符串 String

实用函数 Util

Properties

Methods