bind vs emulated bind vs simpler bind (v25)

Revision 25 of this benchmark created by Avi Kohn on


Preparation HTML

<script>
        var scope = {
                num: 2
        };

        var fn = function() {
                return this.num + 1;
        };

        var emulateBind = function (fn, context) {
                var curriedArgs = Array.prototype.slice.call(arguments, 2);

                if (curriedArgs.length) {
                        return function () {
                                var allArgs = curriedArgs.slice(0);

                                for (var i = 0, n = arguments.length; i < n; ++i) {
                                        allArgs.push(arguments[i]);
                                }

                                return fn.apply(context, allArgs);
                        };
                }
                else {
                        return createProxy(fn, context);
                }
        };

        var createProxy = function(fn, context) {
                return function() {
                        return fn.apply(context, arguments);
                }
        }

        var simpleBind = function(fn, ctx) {
                return function() {
                        return fn.apply(ctx, arguments);
                };
        };
</script>

Setup

var bound = fn.bind(scope),
        simple = simpleBind(fn, scope),
        emulated = emulateBind(fn, scope),
        direct = function() {
                return scope.num + 1;
        };

Test runner

Ready to run.

Testing in
TestOps/sec
Native bind
bound();
ready
Emulated bind
emulated();
ready
Simple bind
simple();
ready
Direct calling of scope
direct();
ready

Revisions

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