In this third post about Javascript performance, I’ll make some tests on object instantiation, and about using objects to simulate namespaces. You’re probably aware of javascript prototypal inheritance system. If not, just take a look into that link for a quick start.
Other posts in the series:
Closures vs object properties
Control structures
As you should know, we can […]
This is the continuation of the Javascript performance series I started a couple of days ago. You can follow this link to read the first chapter covereing Object properties vs closures. In this second part I’ll want to analyse control structures performance.
Other posts in this series:
Closures vs Object properties
Object instantiation and namespace simulation
For vs while
Probably […]