It also causes the following to be printed after every single element
in the Inspector:
function (obj) { return this.indexOf(obj) != -1; }function (obj) {
return this.concat(); }function (obj, i) { this.splice(i, 0, obj);
}function (obj, obj2) { var i = this.indexOf(obj2); if (i == -1) {
this.push(obj); } else { this.splice(i, 0, obj); } }function (i) {
this.splice(i, 1); }function (obj) { var i = this.indexOf(obj); if (i
!= -1) { this.splice(i, 1); } }
And the appearance of errors in the console becomes very erratic -
sometimes they are there, sometimes they aren't.
A fun little problem for someone to work out when they have a spare
afternoon!