isExp function

bool isExp(
  1. String char
)

Implementation

bool isExp(String char) {
  return char == 'e' || char == 'E';
}