Sometimes I hear the argument against doing things on client side using javascript. People say stuff like “JavaScript is inefficient…or slow”. I’m wondering if there actual facts supporting this conclusion?
Sometimes I hear the argument against doing things on client side using javascript. People
Share
There are really two factors to Javascript performance:
Your code is the easiest factor to fix. As you develop, optimize your code as best you can. Easy.
The second isn’t always as easy. I’ve had some applications where performance on one browser was excellent and another was slower than mud. Others run great across the board. Best you can do is test, test, test, and test again. If you want a good article, check out the link:
Coding Horror: The Great Browser JavaScript Showdown