Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

JavaScript JavaScript Functions Create Reusable Code with Functions Using Multiple return Statements

Megan Chen
Megan Chen
7,406 Points

Simplify the code, but not work

Hi team, when I simplify the code like the following codes. I find it works when having field value, but not works when no field value. But there is no any error msg. May I know why I can not simplify the code like this? Why have to have fieldTest? Thanks!

function isFieldEmpty() {

const field = document.querySelector('#info');

if (field.value === "") {

alert("Please provide your info.");

}

1 Answer

Steven Parker
Steven Parker
229,771 Points

The purpose of the isFieldEmpty() function used in the video is to return a true or a false value based on the current contents of the field.

The main problem here is that the function is not returning any value.