My question is dead simple.
I just casually discovered that once you have defined a property with this.
into an object, you don't need to prepend this.
anymore when you want to call them.
So this.
is really meant to be used ad definition time, like var
?
I found it my self shortly after, i was referencing the window object with this. since i called my object without using new, so like it was a function.
One extra question, maybe for comments. Inside the main object, if i create a new object, and use this
during the object definition, this this
what will be referring to?