Answers for "javascript check if string for alphabet"

3

how to check if a string has only alphabets in javascript

if (!/[^a-zA-Z]/.test(word))
Posted by: Guest on June-11-2020
0

checking if a character is an alphabet in js

function isLetter(str) {
  return str.length === 1 && str.match(/[a-z]/i);
}
Posted by: Guest on May-15-2020

Code answers related to "javascript check if string for alphabet"

Code answers related to "Javascript"

Browse Popular Code Answers by Language