function Class(){ this.a = function(){ alert('все работает'); } this.b = function(){ this.a(); } } var c = new Class(); setTimeout(c.b,1500);