Vérifier si un personnage est un alphabet en js

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