Pages
Categories
Archives
Monthly Archives: July 2009
Google Web perfomance initiative.
Gogle initiates a really great project recently: Let’s make the web faster
So Optimizing JavaScript code article got in scope of my interest.
Conclusions:
use [<string>,<string>,<string>].join(“”) for string concatenation (* this is pretty well known rule)
use prototype method defining rather than defining method inside closure
Creating a closure is significantly slower then creating an inner function without a closure, [...]
Javascript performance. Array vs Object.
Big JavaScript application needs big storage. JS gives us 2 options Array and Object. I have tested following cases:
writing data
writing data randomly
reading data
reading data randomly
I have tested this in following browsers:
IE
FF
Chrome
I want to point out that i am not comparing browsers. I am comparing two methods of storing data in JavaScript.
I have checked perfomance of [...]
Javascript performance summary
I have an idea that Javascript could allow us to improve perfomance of our web applications. Of cause JS is very slow but unlike server side code we can run it on side of our clients. Something like client side cloud-computing.
It is jut an idea… for now.
Thing i can do right now is to improve [...]
Who am i and what is this blog about
This is the only private message you will see in this blog.
Since all the thoughts i have about JavaScript and Front-end development totally occupied my mind i have to make this Blog to get them in order.
I am a web developer. My main area of interest for now is a JavaScript.
Yes i have read Douglas [...]
SVG have a great potential.