Skip to content

Instantly share code, notes, and snippets.

@basilalex
Created March 29, 2017 14:25
Show Gist options
  • Save basilalex/8390108ab5e260e456da6b1ed5549f9f to your computer and use it in GitHub Desktop.
Save basilalex/8390108ab5e260e456da6b1ed5549f9f to your computer and use it in GitHub Desktop.
RegExp for email check.
function checkEmail(email) {
const reg = /^([A-Za-z0-9_\-\.])+\@([A-Za-z0-9_\-\.])+\.([A-Za-z]{2,4})$/;
(!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