var format = /[!@#$%^&*()_+-=[]{};':"|,.<>/?]+/;
if(format.test(string)){
return true;
} else {
return false;
}
var email = "grepper@gmail.com";
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