Code
Optimization Techniques For JavaScript
Often times JavaScript coding you’ll find yourself creating a loop and at some point in time doing some form of conditional statement. Conditions in loops have a heavy impact on the speed in which JavaScript will execute. Especially when the number of iterations is high. Take for example the following Read more…