"use strict"; function Parent() {} // наследуем var child = Object.create( Parent.prototype ); // приляпываем Parent.prototype.method = function() { return "works fine" ; }; // ок alert( child.method() );