Email Verification in Javascript
Apr 14, 2024 · 2 min read · // 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...
Join discussion




















