Submitted over 1 year agoA solution to the Newsletter sign-up form with success message challenge
Newsletter sign-up form with success message
P
@AcharaChisomSolomon

Solution retrospective
What are you most proud of, and what would you do differently next time?
During this project, I learned about form validations and handling form data. Here's a snippet of the JavaScript code I used for email validation:
const validateEmail = (email) => {
const re = /\S+@\S+\.\S+/;
return re.test(email) && email.length > 0;
};
What challenges did you encounter, and how did you overcome them?
Nothing major.
What specific areas of your project would you like help with?Nothing for now, any tips on how to improve are welcome!!!
Code
Loading...
Please log in to post a comment
Log in with GitHubCommunity feedback
No feedback yet. Be the first to give feedback on Achara Chisom Solomon's solution.
Join our Discord community
Join thousands of Frontend Mentor community members taking the challenges, sharing resources, helping each other, and chatting about all things front-end!
Join our Discord