Substrings
This gets the fifth character out of myName. The first number is the beginning, the second is the end. It is sort of like selecting text from a start point to an end point.
myName.substring(4, 5)
This gets the fifth character out of myName. The first number is the beginning, the second is the end. It is sort of like selecting text from a start point to an end point.
myName.substring(4, 5)
Posted by Matt Maxwell at 11:02 AM
No comments:
Post a Comment