Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save ncou/a661bac7c7856581aeca16e8cb9a3f1f to your computer and use it in GitHub Desktop.
Save ncou/a661bac7c7856581aeca16e8cb9a3f1f to your computer and use it in GitHub Desktop.
Javascript - Use a regex to check the email address input.
function checkEmail(email) {
var reg = /^([A-Za-z0-9_\-\.])+\@([A-Za-z0-9_\-\.])+\.([A-Za-z]{2,4})$/;
if (!reg.test(email)) return false;
return true;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment