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

Revision 35 of this benchmark created by Richard Bezemer on


Preparation HTML

<script src="http://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.0/jquery.min.js"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/underscore.js/1.4.1/underscore-min.js"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/lodash.js/0.8.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);
ready
jQuery.proxy
var foo = jQuery.proxy(function (x) {
    return this + x;
}, 1);
ready
Lo-Dash bind
var foo = lodash.bind(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.