EaselJS performance

JavaScript performance comparison

Test case created

Preparation code

<script>
  (function(window) {

    //Closure
    window.CUID = (function() {
      var _nextID = 0;
      return {
        get: function() {
          return _nextID++;
        }
      };
    })();

    //UID.js of EaselJS library
    var UID = function() {
        throw "UID cannot be instantiated";
    }
       
    UID._nextID = 0;
    UID.get = function() {
      return UID._nextID++;
    }
    window.UID = UID;
  }(window));
</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
Closure
CUID.get()
pending…
EaselJS
UID.get()
pending…

You can edit these tests or add even more tests to this page by appending /edit to the URL.

Compare results of other browsers

0 comments

Add a comment