function constr(){
this.x = 2;
this.y = 10;
this.getXplusY = function(){
return this.x + this.y;
}
/* Если пользоваться по обычному то все норм*/
var a = new constr();
alert( a.getXplusY() ); // выведет 12
/* Если вызывать через setInterval*/
setInterval(a.getXplusY, 1000); // ничего не выведет, так как this не будет возвращать поля объекта
}