Answers for "js match alphabet"

0

js match alphabet

function validAlphabetLetter(letter) {
  return /^[a-zA-Z]$/.test(letter);
}
Posted by: Guest on April-26-2022

Code answers related to "Javascript"

Browse Popular Code Answers by Language