Skip to content

Instantly share code, notes, and snippets.

@rmrotek
Created September 17, 2018 20:33
Show Gist options
  • Select an option

  • Save rmrotek/5712baf4733059342bae908fe09863fb to your computer and use it in GitHub Desktop.

Select an option

Save rmrotek/5712baf4733059342bae908fe09863fb to your computer and use it in GitHub Desktop.
email validation js
function validateEmail(str) {
if (/^\w+([\.-]?\w+)*@\w+([\.-]?\w+)*(\.\w{2,3})+$/.test(str))
{
return (true)
}
return (false)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment