charAt method

String charAt(
  1. int index
)

Implementation

String charAt(int index) {
  return charArray[index];
}