If String x Computer String y Applications What do the following
50 Likes
ompu
x.substring(1,5) will return a substring of x starting at index 1 till index 4 (i.e. 5 - 1 = 4).
x.substring(1,5)
Answered By
24 Likes