charAt method

String charAt(
  1. int index
)

Implementation

String charAt(int index){
  return this.substring(index,index);
}