Skip to content

Instantly share code, notes, and snippets.

@sakshstore
Created September 2, 2022 09:23
Show Gist options
  • Save sakshstore/7eb3ee9572d18f12f19ab437f7fe3b74 to your computer and use it in GitHub Desktop.
Save sakshstore/7eb3ee9572d18f12f19ab437f7fe3b74 to your computer and use it in GitHub Desktop.
const validateEmail = (email) => /^[^\s@]+@[^\s@]+\.[^\s@]+$/.test(email);
// Usage
validateEmail("[email protected]"); // true
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment