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 The Solution

My code is not working in 4th part - after two alerts there's a blank page

I do everything exactly in the same way as in the video :

var completeName = firstName.toUpperCase() + ' ' + lastName.toUpperCase();

I save and preview and after two alerts nothing more happens, there's only a blank page.

Maybe the problem is the fact that the " + "signs in my code are orange (as the "toUpperCase" extension) ? I don't know why and I don't know how to fix it.

I'd be grateful for help, thanks

1 Answer

Steven Parker
Steven Parker
229,786 Points

The video demonstration code only displays a pop-up message — it won't cause anything to be displayed on either the page or console.

Ahh yes, thank you, it was pretty obvious.. Anyway, it turned out that there were many syntax errors in my last statement, that's why nothing happened after two first alerts, never mind Thanks a lot!