bind vs jQuery.proxy (v40)

Revision 40 of this benchmark created by Diego Saint Esteben 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);
ready
jQuery.proxy
var foo = jQuery.proxy(function (x) {
    return this + x;
}, 1);
ready
context in variable
var cxt = 1;
var foo = function (x) {
    return cxt + x;
}
ready

Revisions

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