Welcome to the Treehouse Community
The Treehouse Community is a meeting place for developers, designers, and programmers of all backgrounds and skill levels to get support. Collaborate here on code errors or bugs that you need feedback on, or asking for an extra set of eyes on your latest project. Join thousands of Treehouse students and alumni in the community today. (Note: Only Treehouse students can comment or ask questions, but non-students are welcome to browse our conversations.)
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and a supportive community. Start your free trial today.

Bartlomiej Figatowski
5,843 PointsHello, I noticed that when I press the button, I can add empty li.
Hello, I noticed that when I press the button, I can add empty li. This is my solution.
addItemButton.addEventListener ('click', () => { let ul = document.getElementsByTagName ('ul') [0]; let li = document.createElement ('li'); li.textContent = addItemInput.value;
if (addItemInput.value === "") {
addItemInput.value = "";
} Else {
ul.appendChild (li);
addItemInput.value = "";
}
});
1 Answer

Tibor Ruzinyi
17,968 PointsHi try to alert the user when he is appending an empy string like this
ButtonAddNewItem.addEventListener('click',() => {
if(inputNewItem.value === ""){
alert('Please add a value to the input field');
}else{
let li = document.createElement('li');
li.textContent = inputNewItem.value;
console.log(li);
let ul = document.querySelector('ul');
console.log(ul);
ul.appendChild(li);
inputNewItem.value = "";
}
})
``