Домен электронной почты Проверьте JavaScript
var myemail = 'test@yahoo.com'
if (/@yahoo.com\s*$/.test(myemail)) {
console.log("it ends in @yahoo");
}
Real Rat
var myemail = 'test@yahoo.com'
if (/@yahoo.com\s*$/.test(myemail)) {
console.log("it ends in @yahoo");
}