Skip to content

Instantly share code, notes, and snippets.

@walkerdigital
Created September 13, 2019 15:38
Show Gist options
  • Save walkerdigital/ab018e2f23cac9c9ccde20f309f362ee to your computer and use it in GitHub Desktop.
Save walkerdigital/ab018e2f23cac9c9ccde20f309f362ee to your computer and use it in GitHub Desktop.
JavaScript Email Validation
function emailIsValid (email) {
return /^[^\s@]+@[^\s@]+\.[^\s@]+$/.test(email)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment