Answers for "match contains only alphabets in js"

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 "match contains only alphabets in js"

Code answers related to "Javascript"

Browse Popular Code Answers by Language