Вот тест:
function Bote() {
};
Bote.prototype.init = function() {
alert('Bote');
};
Bote.prototype.test = function() {
alert('Наследуемый метод от Bote');
};
function FreeBitcoinAccountController() {
};
FreeBitcoinAccountController.prototype.init = function() {
alert('FreeBitcoinAccountController');
};
FreeBitcoinAccountController.prototype.__proto__ = Bote.prototype;
var f = new FreeBitcoinAccountController();
f.init();
f.test();