Skip to content

Instantly share code, notes, and snippets.

@marioluevanos
Created January 9, 2019 20:45
Show Gist options
  • Save marioluevanos/2c61ef8787d84caaebd6401e943b78a4 to your computer and use it in GitHub Desktop.
Save marioluevanos/2c61ef8787d84caaebd6401e943b78a4 to your computer and use it in GitHub Desktop.
Checks if a valid email format.
function validEmailFormat(email) {
return email.length > 0 && /\w[@].+[.]\w{2,3}/.test(email)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment