Hi, I apologize if this question has been asked before. I've tried
googling for this, but did find a good answer.
What's the best way to have private methods using prototype's
Class.create?
I've tried...
var Worker = Class.create((function() {
function initialize() {
this.someVar = "var";
privateMethod();
}
function publicMethod() {
privateMethod();
}
function privateMethod() {
console.info(this.someVar);
console.info(this)
}
return {
initialize: initialize
};
})());
Running this will give me:
console.info(this.someVar) #=> undefined
console.info(this.someVar) #=> DOMWindow
However:
aWorker = new Worker();
aWorker.publicMethod() #=> WORKS!
Thank you for your time!
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"Prototype: Core" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/prototype-core?hl=en
-~----------~----~----~----~------~----~------~--~---