Skip to content

Instantly share code, notes, and snippets.

@ir3ne
Created July 10, 2021 09:55
Show Gist options
  • Save ir3ne/5ee475fbd10193e4c26525f581b16b6b to your computer and use it in GitHub Desktop.
Save ir3ne/5ee475fbd10193e4c26525f581b16b6b to your computer and use it in GitHub Desktop.
function checkEmail(email) {
const emailPattern = /^[^@]+@\w+(\.\w+)+\w$/;
return emailPattern.test(email);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment