We have discussion with our team about next: What correct name should have variable which will be alias for "this" in anonymous function. Simple example:
var SomeConstructor = function() {
this.someProperty = 'bingo';
this.someMethod = function() {
var myObjectAlias = this;
$('a').click(function() {
alert( myObjectAlias.someProperty );
});
}
}
So my question is - What correct name should have variable "myObjectAlias"? Or what used in your code for example?