.substr()
.substr(이 인덱스부터, 이 개수를 뽑아내라)
"length".substr(3,3) // "gth"
.substring()
.substring(이 인덱스부터, 이 인덱스 전까지 뽑아내라)
"study".substring(2,3) // "u"