Skip to content

Instantly share code, notes, and snippets.

@billmei
Last active July 12, 2016 04:35
Show Gist options
  • Save billmei/5155734 to your computer and use it in GitHub Desktop.
Save billmei/5155734 to your computer and use it in GitHub Desktop.
Quick and simple email validation. Returns a boolean.
function validateEmail (email) {
return /.+@.+\..+/.test(email);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment