I can create object using prototype, and the fields are set in the constructor, or I can create object using JSON. I'd expect that the prototyped version will be as fast as the literal, or faster, but it occurs that it's slower on chrome and ff, while on Opera both seem to be equal.
http://jsperf.com/object-literal-vs-object-prototype-field-access-time
Can someone explain it?