Показать сообщение отдельно
  #23 (permalink)  
Старый 24.11.2014, 22:49
Аватар для nerv_
junior
Отправить личное сообщение для nerv_ Посмотреть профиль Найти все сообщения от nerv_
 
Регистрация: 29.11.2011
Сообщений: 3,924

krutoy, на здоровье
/**
 * Inherits a target (Class_1) from a source (Class_2)
 * @param {Function} target
 * @param {Function} source
 */
function inherit(target, source) {
    target.prototype = Object.create(source.prototype);
    target.prototype.constructor = target;
    target.super_ = source;
}

// ---------------------

function FormField(data) {
    this._d = data;
}

// -------------------------

inherit(FormFile, FormField);

function FormFile(data, opts) {
    FormFile.super_.apply(this, arguments);
    this.opts = opts;
}

// -------------------------

var a = new FormFile(1, 2);
var b = new FormFile(10, 22);
console.log(a, a instanceof FormField, b instanceof FormField);
console.log(b, a instanceof FormFile, b instanceof FormFile);
__________________
Чебурашка стал символом олимпийских игр. А чего достиг ты?
Тишина - самый громкий звук
Ответить с цитированием