Hi, i got a question when create a javascript object, when one function invoking another function within the object, do we need to use 'this'
MyObject = function() {
this.function_one = function(param) {
return param + param;
};
this.function_two = function(param) {
return this.function_one(param) * this.function_one(param);
// when invoking function_one, do i need to use 'this' ????
};
}