Hello Friends,
Have you observed better performance of Array operations in IE8 than IE7? If not, try the following code in both IE7 & IE8 and I can bet you would not leave this page without reading till the last word.
var arrObj = new Array();
var count = 10000;
var before, after;
for(var i = 0; i < count; i ++)
{
arrObj.push(i);
}
before = new Date();
for(var i = 0; i <
read more »
Be the first to post a Comment!