I have some questions about JavaScript that I need to nail down. To help, I have a simple class definiton I'm writing:
var dataSource = function (src, extension) {
return {
exists: function () {
// function to check if the source exists (src *should* be an object
// and extension should be a string in the format ".property.property.theSource".
// this function will return true if src.property.property.theSource exists)
},
get: function () {
// function will return the source (ex: return src.property.property.theSource)
}
}
}();
Questions:
1) In my current understanding of JavaScript, calling dataSource() will create a new object with its own copies of the exists() and get() methods. Am I correct?
2) Is there a way to write this so that if I create 1,000,000 dataSource objects I only have to have one copy of each function?
3) Should I even be concerned with (2)?