I use a config object to store configuration information. So something like this example:
var value = myObject.Get('name');
The actual config is stored in an array - ie config['name'] = value
There are a lot of calls to the Get() function - over 25,000. How significant would the difference be if that array was accessed directly instead of via he Get() call?
Also - in an animation that 25,000 could be done 60 times per second (!)