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 Basics (Retired) Introducing JavaScript Review Introducing JavaScript

Yemaya Re
PLUS
Yemaya Re
Courses Plus Student 1,922 Points

"Fill in the blank to write a message to web browser".../can they be more specific??

I wrote console.log... and apparently I'm wrong...there are a few ways to write a message to the browser...what do they mean...document.write...alert("<h1>...")... they need to be mmore specific with this question. Thanks

1 Answer

Valeshan Naidoo
Valeshan Naidoo
27,008 Points

document.write is the correct answer. Web browser is the window that the user views. The alert function isn't writing a message on the browser, it's popping up an alert box. The console.log prints a message on the console, but not on the web browser window.

Yemaya Re
Yemaya Re
Courses Plus Student 1,922 Points

Ahh I see. Thank you because I was a little confused!