2014-08-27から1日間の記事一覧

JavaScript performance technique experiment 2

calling a bound function and bind() itself is slow test code. I ran it on Windows chrome. /* the prototype to compare with */ function A() { this.val = 1; }; A.prototype.func = function() { return this.val; }; /* B is callee and C is calle…