Проверка, является ли персонаж алфавит в JS

function isLetter(str) {
  return str.length === 1 && str.match(/[a-z]/i);
}
Bored Buzzard