[jQuery] firefox speed test

[jQuery] firefox speed test

Hello discuss,
Just hacking last night and saw some results on a speed test you might
be interested in:
Results of Speed Tests on SpiderMonkey latest (Firefox)
Testbed is at jorendorff.com > Articles > JavaScript
IE6 was consistent across the board no diffrence ~1.5µs
This was no anomoly. Notice on tests 2,3,&4 there is something going
on?? Hope this helps you..
dot test #1
var _test2={};
%%
_test2._value = 123;
0.967 µs

dot test #2
var _test2={};_test2._value=0;
%%
_test2._value.mmm = 123;
27.788 µs

dot test #3
var _test2={};_test2._value=0;_test2._value.mmm=123;
%%
_test2._value.mmm = 123;
28.800 µs
dot test #4
var _test2={_value:123};
%%
_test2._value.mmm = 123;
29.525 µs
dot test #5
var _test2={_value:{mmm:123}};
%%
_test2._value.mmm = 123;
1.153 µs
dot test #6
var test2={zoo:{keeper:{boy:9}}} ;
%%
test2.zoo.keeper.boy=123;
1.302 µs
--
Best regards,
ottbot mailto:ottbot@rogers.com
_______________________________________________
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/