lookup
JavaScript performance comparison
Info
how much does scope lookup cost? and what about closure creation? This one is only about lookup
Preparation code
<script>
var random = Math.random;
var t1 = function() {
return random();
};
var t2 = (function() {
return function() {
return random();
};
}());
var t5 = (function() {
return (function() {
return (function() {
return (function() {
return function() {
return random();
};
}());
}());
}());
}());
var t10 = (function() {
return (function() {
return (function() {
return (function() {
return (function() {
return (function() {
return (function() {
return (function() {
return (function() {
return function() {
return random();
};
}());
}());
}());
}());
}());
}());
}());
}());
}());
</script>
Test runner
Warning! For accurate results, please disable Firebug before running the tests. (Why?)
Java applet disabled.
| Test | Ops/sec | |
|---|---|---|
1 lookup |
|
pending… |
2 lookup |
|
pending… |
5 lookups |
|
pending… |
10 lookups |
|
pending… |
Compare results of other browsers
Revisions
You can edit these tests or add even more tests to this page by appending /edit to the URL. Here’s a list of current revisions for this page:
- Revision 1: published by WebReflection
- Revision 2: published
- Revision 3: published by Kyle Simpson
- Revision 4: published by WebReflection
- Revision 5: published by Mariusz Nowak
1 comment
So in Revision 1, real cost was extra function calls and not scope lookup. Scope lookup cost is hardly noticeable in this test, and won't affect performance in real world app.