How to validate an email address in JavaScript

There are multiple ways to validate an email address in JavaScript. The best option to validate an email address is by using a regular expression.

The latest official standard for email validation is called RFC 5322. It describes the syntax a valid email address must adhere to.

The following regular expression conforms to the RFC 5322 standard and matches simple email addresses.

([-!#-'*+/-9=?A-Z^-~]+(\.[-!#-'*+/-9=?A-Z^-~]+)*|"([]!#-[^-~ \t]|(\\[\t -~]))+")@([-!#-'*+/-9=?A-Z^-~]+(\.[-!#-'*+/-9=?A-Z^-~]+)*|\[[\t -Z^-~]*])

Here is a function that accepts a string as input and returns whether it is a valid email address or not using the above regular expression:

const validate = email => {
  const expression =
    /([-!#-'*+/-9=?A-Z^-~]+(\.[-!#-'*+/-9=?A-Z^-~]+)*|"([]!#-[^-~ \t]|(\\[\t -~]))+")@([-!#-'*+/-9=?A-Z^-~]+(\.[-!#-'*+/-9=?A-Z^-~]+)*|\[[\t -Z^-~]*])/i

  return expression.test(String(email).toLowerCase())
}

console.log(validate('foo@bar.com')) // true
console.log(validate('foo+foo@bar.com')) // true
console.log(validate('foo @bar.com')) // false
console.log(validate('{a}!%?@@bar.com')) // false

While the above method satisfies all the frequent use cases, it is not 100% accurate. One can assume that it will work for 99.99% of all email addresses in actual use today.

Note: You should not always rely upon JavaScript validation. One can easily disable JavaScript in the browser. Instead, you should always re-validate email addresses on the server side to make sure it is correct.

Email validation in HTML5

HTML5 itself has email validation. You can set the input type to email with required attribute to kick off the validation:

<input type="email" name="email" placeholder="Email Address" required>

Email validation in Node.js

You can reuse the above JavaScript function to validate email addresses in Node.js. This is an advantage of using JavaScript on both client-side and server-side.

Alternatively, you could also use pre-built packages like validator to perform email validation in Node.js:

const validator = require('validator')

validator.isEmail('foo@bar.com') // true
validator.isEmail('foo#!@@bar.com') // false

✌️ Like this article? Follow me on Twitter and LinkedIn. You can also subscribe to RSS Feed.

You might also like...

Digital Ocean

The simplest cloud platform for developers & teams. Start with a $200 free credit.

Buy me a coffee ☕

If you enjoy reading my articles and want to help me out paying bills, please consider buying me a coffee ($5) or two ($10). I will be highly grateful to you ✌️

Enter the number of coffees below:

✨ Learn to build modern web applications using JavaScript and Spring Boot

I started this blog as a place to share everything I have learned in the last decade. I write about modern JavaScript, Node.js, Spring Boot, core Java, RESTful APIs, and all things web development.

The newsletter is sent every week and includes early access to clear, concise, and easy-to-follow tutorials, and other stuff I think you'd enjoy! No spam ever, unsubscribe at any time.