The array to use to get items from.
Index to get in this array, if it is out of bounds (index < 0 or index >= this.length), we will "wrap" that index around to be in range.
Element at the index, wrapped around when out of range. If the array is empty undefined is returned.
Generated using TypeDoc
Gets an element in the array wrapping around (both ways), so -1 would be the last element, and length would warp to 0.