Answers for "Name should contain only alphabets not numbers or other special characters javascript conditions"

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
0

Name should contain only alphabets not numbers or other special characters javascript conditions

hhh
7889
Posted by: Guest on April-01-2021

Code answers related to "Name should contain only alphabets not numbers or other special characters javascript conditions"

Code answers related to "Javascript"

Browse Popular Code Answers by Language