Underscore bind vs jQuery.proxy (v3)

Revision 3 of this benchmark created by Diego Fernandez on


Preparation HTML

<script src="//ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/underscore.js/1.3.3/underscore-min.js"></script>

Test runner

Ready to run.

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

Revisions

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