Verificar si un personaje es un alfabeto en JS

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