Mootools when using For(…in Array) problem
This problem been there for couple years. I am writing some plugins for a Forum engine called Discuz, I use a lot of Mootools for my own projects. When I plug Mootools into this forum Engine(discuz) things went crazy... After I did some debugging last year, I found that the problem is that Mootools prototype a lot of core elements, including Array, And, on the other hand, this forum engine uses a lof of For(i in Array) Loop for 'array'. Which will certainly cause problem because for(i in [1,2,3,4,5]) console.log(i); //0,1,2,3,4 the keys in this array **WITH MOOTOOLS for(i in [1,2,3,4,5])