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 Your First JavaScript Program

Carleen Hall
seal-mask
.a{fill-rule:evenodd;}techdegree
Carleen Hall
Front End Web Development Techdegree Student 3,158 Points

Your First JavaScript Program The browser statement "Welcome to Javascript" is not showing up in my work space.

I am a novice at JavaScript and the simple task of "Welcome to Javascript Basic" is not showing up in the page after I save.

1 Answer

Erik Nuber
Erik Nuber
20,629 Points

Could you please show your code. Should look something like this...

the script tag should be in your html document. Unless they are starting with a separate .js file.

<script>
document.write("Welcome to Javascript");
</script>

If you are using a separate .js file; just make sure that you have a <link> tag to your .js file within the .html file.