getCount(): 11 [number]
getText(): undefined [undefined]
getText(0): undefined [undefined]
getText(1): undefined [undefined]
getText(1, 3): BC [string]
getText(3-like, 5): DE [string]
getText(1, 3-like): BC [string]
getText("3", "5"): DE [string]
getText(100, 200): K [string]
getText(2, 200): CDEFGHIJK [string]
getText(200, 1): K [string]
getText(3, 1): D [string]
getText(100, 1): K [string]
getText(101, 1): K [string]
getText(100, 101): K [string]
getText(0, 0): A [string]
getText(1, 1): B [string]
getText(1, 0): B [string]
getText(true, false): B [string]
getText(false, true): A [string]
getText(0, 1, 2): A [string]
getText(1, 10, 1): BCDEF\nGHIJ [string]
getText(1, 10, true): BCDEF\nGHIJ [string]
getText(1, 10, false): BCDEFGHIJ [string]
getText(1, 10, new Object()): BCDEF\nGHIJ [string]
getText(1, 10, 0): BCDEFGHIJ [string]
getText(1, 10, 0/0): BCDEFGHIJ [string]
getText(8, 10, true): IJ [string]
getText(8, 10, false): IJ [string]
getText(0, 100): ABCDEFGHIJK [string]
getText(0, 100, true): ABCDEF\nGHIJK [string]
getText(0, 6): ABCDEF [string]
getText(0, 6, true): ABCDEF [string]
getText(0, 7): ABCDEFG [string]
getText(0, 7, true): ABCDEF\nG [string]
getText(1, 10, 1, 2): undefined [undefined]
getText(-5, -2): A [string]
getText(-4, -2): A [string]
getText(-3, -2): A [string]
getText(-2, -2): A [string]
getText(-1, -2): A [string]
getText(0, -2): A [string]
getText(1, -2): B [string]
getText(2, -2): C [string]
getText(-5, -2): A [string]
getText(-5, -1): A [string]
getText(-5, 0): A [string]
getText(-5, 1): A [string]
getText(-5, 2): AB [string]
getText(-5, 3): ABC [string]
getText(-5, 2): AB [string]
getText(5, -2): F [string]
getText(-2, -5): A [string]
getText(-2, 5): ABCDE [string]
getText(2, -5): C [string]
