function Parent() { this.hide = function () { alert('hide') } } var child = new Parent() child.hide() try { // но, Parent.hide() // не сработает } catch (e) { alert('не сработало') }