Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

i'v been using javascript getters for a long time in my applications, and always thought

that they work like this:

myobject.prototype.__defineGetter__('something', function () {
   return DoSomeHeavyComputation() // this will be executed only once and will be saved
})

new myobject()
myobject.something // the computation will be done here
myobject.something // no computation will be done here.

i just found out the computation is done each time...

is there a resource or something that shows how do they actually work ?

share|improve this question
It's just a function, lifer any other. You could cache the value, for example by executing a function that returns a function. – Dave Newton May 16 '12 at 0:13

3 Answers

up vote 1 down vote accepted

This article is awesome and gets really into the nitty-gritty of prototyping and object instantiation: http://dmitrysoshnikov.com/ecmascript/chapter-7-2-oop-ecmascript-implementation/

share|improve this answer

If you define a getter on a property of an object it will be called each time you try to access that property.

obj.prop;

If you want to cache the result you should do it manually.

Similary if you define a setter on a property of an object it will be called each time you set the property.

obj.prop = 1;
share|improve this answer

I think you are looking for something like memoization.

http://documentcloud.github.com/underscore/#memoize

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.