prototype.js

Array.prototype.includeが遅い!

prototype-1.4.0.jsのArrayのあたりを読んでたら、どうもincludeに時間がかかりそうな予感がしたので、調べてみたら本当に遅かった。 include: function(object) { var found = false; this.each(function(value) { if (value == object) { found = true; th…