function validateEmail(email) { const regex = /^[a-zA-Z0-9._%+-]+@[a-zA-Z0-9.-]+\.[a-zA-Z]{2,}$/; if (!email || typeof email !== 'string') { return 'ایمیل نامعتبر است'; } if (!regex.test(email)) { return 'ایمیل نامعتبر است'; } return 'ایمیل معتبر است'; } // Example const email = 'aabrahimi1718@gmail.com'; console.log(validateEmail(email)); // OutPut => ایمیل معتبر است