lookup

JavaScript performance comparison

Test case created by WebReflection

Info

how much does scope lookup cost? and what about closure creation?

Preparation code

<script>
  var random = Math.random;
</script>

Test runner

Warning! For accurate results, please disable Firebug before running the tests. (Why?)

Java applet disabled.

Testing in unknown unknown
Test Ops/sec
1 lookup
var f = random();
pending…
2 lookup
var f = (function() {
 return random();
}());
pending…
5 lookups
var f = (function() {
 return (function() {
  return (function() {
   return (function() {
    return random();
   }());
  }());
 }());
}());
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:

0 comments

Add a comment