Does this (below) consume:
a) A little bit more - but that's obvious. Not enough to be a concern though. b) Vast swathes of memory - no no no!
getFoo =                // Lowercase alias because of new style guide
GetFoo = function ()
{
};
Thanks.
Does this (below) consume:
a) A little bit more - but that's obvious. Not enough to be a concern though. b) Vast swathes of memory - no no no!
getFoo =                // Lowercase alias because of new style guide
GetFoo = function ()
{
};
Thanks.
 
    
    As many commmentors have pointed out, I was wrong about it using double the memory. Option a, a tiny bit more memory usage, would happen, but that's all. Your current solution is OK. Sorry all, I learn something...
