Write a function to validate an email address. The function should check if the given email address is in the correct format. The correct format for an email address is as follows:
local@domain
.local
part can contain alphanumeric characters and special characters ._%+-
.domain
part can contain alphanumeric characters and hyphens -
.domain
part must contain at least one dot .
with at least one character before and after it.Input: email = "test.email+alex@leetcode.com"
Output: True
Input: email = "test.email.leetcode.com"
Output: False
When the function isValidEmail
is called with the given example input, the expected output is a boolean indicating whether the email is valid or not.
console.log(isValidEmail("test.email+alex@leetcode.com")); // Output: True
console.log(isValidEmail("test.email.leetcode.com")); // Output: False
Memory: 0
CPU: 0