I want to do some speed tests on very basic stuff like variable declaration.
Now i have a function that executes X times to have a more significant time difference.
http://jsfiddle.net/eTbsv/ (you need to open your console & it takes a few seconds to execute)
this is the code:
var doit = 10000000,
i = 0,
i2 = 0;
//testing var with comma
console.time('timer');
function test(){
var a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,t,u,v,w,x,y,z;
};
while (i<=doit){
test();
i++;
};
console.timeEnd('timer');
//testing individual var declarations
console.time('timer2');
function test2(){
var a; var b; var c; var d; var e; var f; var g; var h; var i; var j; var k; var l; var m; var n; var o; var p; var q; var r; var s; var t; var u; var v; var w; var x; var y; var z;
};
while (i2<=doit){
test();
i2++;
};
console.timeEnd('timer2');
Now i have two questions:
- Is this an accurate way of testing the speed of variable declarations?
- how could i test more cycles without having firefox to crash? If i set
doitto 1000000000 for example, firefox want to stop the script. - why are my results (of my script and in jspref) so different each time? Sometime the individual variable declaration is faster then the grouped :/
edit just made JS Pref testcase: http://jsperf.com/testing-js-variable-declaration-speed would be nice if some of you with different browsers and configuration could participate. But im still interested to know if this way of testing it is accurate.