Checks if a string contains only alphabetic characters.
Returns true if the string contains only alphabetic.
true
isAlpha('alpha1234')// falseisAlpha('letters')// true
The string
Generated using TypeDoc
Checks if a string contains only alphabetic characters.
Returns
Returns
true
if the string contains only alphabetic.Example