Solucio funcio com a metode

De wikiserver
Dreceres ràpides: navegació, cerca
function unica(){return this;};

assert(unica() === window, "unica a la finestra");

var replica = unica;

assert(replica() === window, "replicant a la finestra");

var objecte1 = {
 clon : unica
}

assert(objecte1.clon() === objecte1, "objecte1 utilitza un clon!");

var objecte2 = {
 clon : unica
}

assert(objecte2.clon() === objecte2, "Objecte2 utilitza un clon!");



Exercici

var persona = {
    name: 'edu',
    twitter: 'eiximenis',
    twitterUrl: 'http://twitter.com/' + this.twitter
};
 
console.log(persona.twitterUrl);    //http://twitter.com/undefined


Exercici

// this == window
console.debug(this);

function test(){
	// this == window
console.debug(this);
}

test();


Exercici


var obj = {
	name: 'obj',
	run: function(){
		// this == obj
		this.value = 1;
		console.debug(this.name);
	}
};

obj.run();


Exercici

var obj = {
	name: 'obj',
	run: function(){
		this.value = 1;
		console.debug(this); // this == obj
		
		(function(){ // se crea un nuevo scope
			console.debug(this); // this == window
		})();
		
		function test(){ // se crea un nuevo scope
			console.debug(this); // this == window
		}
		
		test();
	}
};

obj.run();


Exercici

var obj = {
	name: 'obj',
	run: function(){
		this.value = 1;
		console.debug(this); // this == obj
		
		(function(){
			console.debug(this); // this == obj
		}).call(this); // se autoejecuta con el método call
		
		this.test = function(){ // se define como método de obj
			console.debug(this); // this == obj
		}
		
		this.test(); // se ejecuta dentro del contexto de obj
	}
};

obj.run();