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

General Discussion

Problems with Work Space.

I tied starting on a work space. I'm in "Intro Programming JS" I used the index html code from the video -<!DOCTYPE html> <html lang="en"> <head> <title> Jeffrey's 1st Workspace </title> <style> html { background: #FAFAFA; font-family: sans-serif; } </style> <script src="myscript.js"></script> </head> <body> <h1>Jeffrey's 1st Workspace</h1> <h2>with Javascript</h2> </body> </html> Plus the JS codes -console. log("Hello from myscript.js"); var name = prompt("What is your name?"); alert("hello" + shit); name ="john" console.log("the user's name is " + name); I can't seem to get the page to show when I preview it..