Answers for "Check if a string contains only letters in JavaScript"

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

Code answers related to "Check if a string contains only letters in JavaScript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language