Periksa string alfabet di javascript

function isAlphaOrParen(str) {
  return /^[a-zA-Z()]+$/.test(str);
}
Homeless Hoopoe