Native bind vs jQuery.proxy vs Underscore bind (v18)

Revision 18 of this benchmark created on


Description

testing against jQuery 2.0 & underscore 1.4.4

Preparation HTML

<script src="//code.jquery.com/jquery-2.0.0.min.js"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/underscore.js/1.4.4/underscore-min.js">
</script>

Test runner

Ready to run.

Testing in
TestOps/sec
Native bind
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
Underscore.js bind
var foo = _.bind(function(x) {
  return this + x;
}, 1);
foo(1)
ready
Without bind
var _this = this;
var foo = function(x) {
  return _this + x;
};
foo(1);
ready

Revisions

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