Underscore bind vs jQuery.proxy vs Lo-Dash bind (v50)

Revision 50 of this benchmark created on


Preparation HTML

<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/underscore.js/1.6.0/underscore-min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/lodash.js/2.4.1/lodash.min.js"></script>
<script>
 var lodash = _.noConflict();
</script>

Test runner

Ready to run.

Testing in
TestOps/sec
Underscore bind
var foo = _.bind(function (x) {
    return this + x;
}, 1);
foo(1);
ready
jQuery.proxy
var foo = jQuery.proxy(function (x) {
    return this + x;
}, 1);
foo(1);
ready
Lo-Dash bind
var foo = lodash.bind(function (x) {
    return this + x;
}, 1);
foo(1);
ready
Native bind
var foo = function (x) {
    return this + x;
}.bind(1);
foo(1);
ready
Self
var self = 1;
var foo = function (x) {
    return self + x;
};
foo(1);
ready

Revisions

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