Lodash

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

“Object” Methods

_.assignIn(object, [sources])

这个方法类似 _.assign, 除了它会遍历并继承来源对象的属性。

Note: 这方法会改变 object

添加版本

4.0.0

Aliases

_.extend

参数

  1. object (Object): 目标对象。
  2. [sources] (...Object): 来源对象。

返回

(Object): 返回 object

例子

function Foo() {
  this.a = 1;
}
 
function Bar() {
  this.c = 3;
}
 
Foo.prototype.b = 2;
Bar.prototype.d = 4;
 
_.assignIn({ 'a'0 }, new Foo, new Bar);
// => { 'a': 1, 'b': 2, 'c': 3, 'd': 4 }

数组 Array

集合 Collection

日期 Date

函数 Function

Lang

数学 Math

数字 Number

对象 Object

Seq

字符串 String

实用函数 Util

Properties

Methods