allKeys_.allKeys(object)检索 object 拥有的和继承的所有属性的名称。function Stooge(name) { this.name = name;}Stooge.prototype.silly = true;_.allKeys(new Stooge("Moe"));=> ["name", "silly"]Copy