Skip to content

Instantly share code, notes, and snippets.

@zmts
Last active September 15, 2016 09:49
Show Gist options
  • Save zmts/55e3a378f384e9209fb4b42b4ecdfa46 to your computer and use it in GitHub Desktop.
Save zmts/55e3a378f384e9209fb4b42b4ecdfa46 to your computer and use it in GitHub Desktop.
function check(mail){
return /^[0-9a-z]([\.-]?\w+)*@[0-9a-z]([\.-]?[0-9a-z])*(\.[0-9a-z]{2,4})+$/i.test(mail)
}
console.log( check('[email protected]') ) // >> true
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment