Email Verification in Javascript
// Email Varification
// Input an Email
// Length of the email > 11
// after . only 2 or 3 characters allowed
// minimum 3 characters between @ and .
const email = prompt("Enter the email address");
const emailLen = email.length;
const dotIndex = e...