// declare something, this and that:
var that = this,
what = that,
something = whats(what);
// declare whats what (means that):
function whats(that){
var what = this, thats = that;
if (thats == this){return that} else {return what};
};
// find out something:
whats(something);
// and the answer is: this
Keine Kommentare:
Kommentar veröffentlichen