_.create(prototype, [properties])
Creates an object that inherits from the prototype object. If a properties object is given, its own enumerable string keyed properties are assigned to the created object.
Arguments
prototype (Object): The object to inherit from.
[properties] (Object): The properties to assign to the object.
Returns
(Object): Returns the new object.