Answers for "test if no special character javascript"

3

javascript check if string contains special characters

var email = "[email protected]";
if(email.includes("@")){
  console.log("Email is valid");
}
else{
  console.log("Email is not valid");
}
// includes return boolean, if your string found => true else => false
Posted by: Guest on June-19-2021

Code answers related to "test if no special character javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language