The benchmark:
The invariants:
var f = function() { };
var g = function() { return this; }
The tests:
Below in order of expected speed
new f;g.call(Object.create(Object.prototype));new (function() { })(function() { return this; }).call(Object.create(Object.prototype));
Actual speed :
new f;g.call(Object.create(Object.prototype));(function() { return this; }).call(Object.create(Object.prototype));new (function() { })
The question:
- When you swap
fandgfor inline anonymous functions. Why is thenew(test 4.) test slower?
Update:
What specifically causes the new to be slower when f and g are inlined.
I'm interested in references to the ES5 specification or references to JagerMonkey or V8 source code. (Feel free to link JSC and Carakan source code too. Oh and the IE team can leak Chakra source if they want to).
If you link any JS engine source, please explain it.

Object.create(Object.prototype)rather than using an object literal({})? Aren't they exactly the same? Could that be the source of some performance difference? – maerics Jun 22 '11 at 14:29Object.create(object.prototype)was more in the "spirit" ofnew. It seems like{}is faster in Chrome, slower in FF and about the same in IE. – Raynos Jun 22 '11 at 14:38Object.create(Object.prototype)is more in the spirit ofnew, I'd be interested to see an example that was trying to construct more than just an empty object in order to confirm this. – Domenic Jun 22 '11 at 14:43