Access our premium support and let us know your problems, we will help you solve them.

0
No products in the cart.
  • This topic is empty.
Viewing 31 post (of 31 total)
  • Author
    Posts
  • #8974
    David Hoang
    Keymaster
    // Try this regular Expression by ES6 function
    
    const emailValidate = (email) => {
      const regexp= /^[\w.%+-]+@[\w.-]+\.[\w]{2,6}$/;
      return regexp.test(email);
    }
    
Viewing 31 post (of 31 total)
  • You must be logged in to reply to this topic.