It has to do with
In javascript not keeping a reference to the original place the method was 'added' for loop does not have it's own scope - so it a var you create inside a loop is evaluated not with the 'this' of the time it was created but with the 'this' different from one defined outside of the time itis being run. It is probably probably explained better elsewhere.
