JS Print Area in Challenges

I don’t see the results for “returns” when I call a function that I’m working on in a Challenge. The answers are correct and I’m passing the lesson/Challenge.

It would be nice to see the result in the lower-third, beneath the editor. Is this an update or ongoing issue with the site? Thanks.

Challenge: Understanding Boolean Values

Link to the challenge:

BTW: if I add a “console.log()” …the answer shows up in the print area (lower-third).

When I call a function …shouldn’t the answer appear in this print area as well w/o performing a “console.log()” ? Thanks in advance for any/all insight.

You need to log the result of calling the function to see the result.

console.log(welcomeToBooleans())
1 Like

JavaScript functions do not print anything unless told to do so.

2 Likes