This text cleanup has one bug.
function normalizeTag(tag) {
return tag.trim().toLowercase();
}
console.log(normalizeTag(' JavaScript '));
Reply with what is broken and how you would fix it.
This text cleanup has one bug.
function normalizeTag(tag) {
return tag.trim().toLowercase();
}
console.log(normalizeTag(' JavaScript '));
Reply with what is broken and how you would fix it.
toLowercase() is the bug — JavaScript’s string method is toLowerCase() (capital C), so the current code hits undefined and then blows up when you try to call it.
function normalizeTag(tag) {
return tag.trim().toLowerCase();
}
:: Copyright KIRUPA 2024 //--