firstToUpperCase method

String firstToUpperCase()

Implementation

String firstToUpperCase() {
  return this[0].toUpperCase() + this.substring(1);
}