check if string contains alphabets javascript code example
Example 1: how to check if a string has only alphabets in javascript
if (!/[^a-zA-Z]/.test(word))
Example 2: checking if a character is an alphabet in js
function isLetter(str) {
return str.length === 1 && str.match(/[a-z]/i);
}