Lodash _.create

2021-09-23 09:35 更新

_.create(prototype, [properties])

創(chuàng)建一個繼承 prototype 的對象。 如果提供了 prototype,它的可枚舉屬性會被分配到創(chuàng)建的對象上。

添加版本

2.3.0

參數(shù)

  1. prototype (Object): 要繼承的對象。
  2. [properties] (Object): 待分配的屬性。

返回

(Object): 返回新對象。

Example

function Shape() {  this.x = 0;  this.y = 0;} function Circle() {  Shape.call(this);}
 Circle.prototype = _.create(Shape.prototype, {  'constructor': Circle}); 
var circle = new Circle;circle instanceof Circle;
// => true 
circle instanceof Shape;
// => true


以上內(nèi)容是否對您有幫助:
在線筆記
App下載
App下載

掃描二維碼

下載編程獅App

公眾號
微信公眾號

編程獅公眾號