Re: JavaScript: Put everything in a namespace
I always write like:
var Article = Article ? Article : new function() {
// private
var title = "Report: School Shootings Help Prepare Students For Being Shot In Real World";
// public
this.getTitle = function() {
return title;
};
this.save = function() {
alert(”Saving ” + this.getTitle());
};
};

No comments:
Post a Comment