bind vs jQuery.proxy (v26)

Revision 26 of this benchmark created on


Preparation HTML

<script src="//ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js"></script>

Test runner

Ready to run.

Testing in
TestOps/sec
bind method
var foo = function (x) {
    return this + x;
}.bind(1);
foo(1);
ready
jQuery.proxy
var foo = jQuery.proxy(function (x) {
    return this + x;
}, 1);
foo(1);
ready
Closure
var that = 1;
var foo = function(x){
  return that + x;
}
foo(1);
ready
closure
 
ready

Revisions

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