In Javascript OO, when should I use the this keyword?
Also, if I want to call a method of a class from another method of the same class, should I use this or just the name of the function? E.g is this correct?
function Foo()
{
this.bar= function()
{
alert('bar');
}
this.baz= function()
{
this.bar(); //should I use this.bar() or just bar()?
}
}

bar()becausethisis never implicit in JavaScript (since it's not really a proper object-oriented language.)bar()would first look for a variable defined asbarin the functionthis.baz, then it would look for a variable defined asbarin the functionFooand finally it would look in the global scope, and failing that it would throw an error. – Blixt Jul 17 at 17:22