Tests:
  • proto

    AخA
     
      var a;
      a = function(){};
      a.prototype.wat = function (){
        r = 9 + 9;
      };
      for(var i = 0; i < 1000; i++){
        a.prototype.wat()
      }
  • noproto

     
      var a;
      a = function(){};
      a.wat = function (){
        r = 9 + 9;
      };
      for(var i = 0; i < 1000; i++){
        a.wat()
      }
     
Rendered benchmark preparation results:

Suite status: <idle, ready to run>

Previous results

Experimental features:

  • Test case name Result
    proto
    noproto

    Fastest: N/A

    Slowest: N/A

Latest run results:
Run details: (Test run date: 8 years ago)
Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2743.116 Safari/537.36
Chrome 52 on Mac OS X 10.10.4
View result in a separate tab
Test name Executions per second
proto 4665.1 Ops/sec
noproto 5204.4 Ops/sec