Email address syntax validation? Let the browser do it (without regexp)
Here is a simple and robust way to check for the validity of an email address syntax directly in the browser. No need for crazy regular expressions.
e = document.createElement('input') e.type = 'email' // check some email addresses e.value = 'hi@' e.validity.valid // false e.value = 'hi@fullweb.io' e.validity.valid //true