Implement email validation using Javascript. If the email is invalid, display an error message saying Please enter a valid email address.
. If it is valid, show an alert saying Email address is valid
.
Hint: Use this regex to validate email address: /^[^\s@]+@[^\s@]+\.[^\s@]+$/