function User(name) {
this.name = name;
this.say = function( ) { console.log(this.name)}
}
var john = new User ("John");
function testTimeout( ) {
timer = window.setTimeout( john.say, 1000);
}
timer = window.setTimeout( function( ){john.say( )}, 1000);