Codeum
.
Practice
Progress
Community
EN
TR
Sign In
Exit Challenge
Debug
~ 5 Min
Intermediate
Debugging
Fix the authentication bug.
Normalize the email before a case-sensitive database lookup.
Runs In Your Browser
challenge.js
JavaScript
•
0 attempts
1
2
3
4
5
6
function normalizeEmail(email) { return email.trim(); } const email = normalizeEmail(" Dev@Example.com " ); console.log(email);
Ctrl/⌘ + Enter to submit
Reset
Run Tests
Submit