MyClass = function() {
var init = function() {
console.log("Initializing");
}
this.init();
}
var myInstance = new MyClass();
When I run the above I get
TypeError: Object [object Object] has no method ‘init’
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
It’s because by declaring
initas avar, or a local variable rather than a property of the object. As such,initdoes not become a member function of your object, which is why your code failed to run as you expected. Initialize it asthis.init = function() {instead to achieve the expected behaviour.http://jsfiddle.net/Y2Rvq/