-

JavaScript Optimisation – Destructive vs Indexed Array Iteration
In number of JavaScript applications, developers are found to use destructive array iteration for the sake of readability and simplicity of codes. However, usage of the same is not always conducive towards the performance of the code.
-

Optimising JavaScript (part 1)
In my years of experience in programming, I have observed that certain performance ‘tweaks’ work best for certain languages. This is mostly due to the nature of the interpreter ((Interpreters are programs that execute codes one line at a time. See: Interpreter in Wikipedia))/compiler ((a program that decodes instructions written in a higher order language.…