> Instead you can do this.array[((this.position-- + this.array.length) +
> this.array.length)].

Should be:
  this.array[ (this.position-- + this.array.length) % this.array.length ];
------------------------
Gary Katsevman
Computer Science Undergraduate
Northeastern University
gkatsev.com

-- 
You received this message because you are subscribed to the Google Groups "The 
JSMentors JavaScript Discussion Group" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/jsmentors?hl=en.

Reply via email to