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 Foundations Objects Methods

Patrick Ludwig
Patrick Ludwig
2,462 Points

The course I am working on no longer exists

I was working on the JavaScript Foundations class and I have two challenges and one tutorial left. However, I need to go back and view the course before this objective, but the system will not let me do this. I also have already started the JavaScipt Basics class which is a current course that still exists. However, it always comes back to the JavaScript Foundations course when I sign in on the TeamTreehouse.com website.

index.html
<!DOCTYPE html>
<html lang="en">
  <head>
    <title> JavaScript Foundations: Objects</title>
    <style>
      html {
        background: #FAFAFA;
        font-family: sans-serif;
      }
    </style>
  </head>
  <body>
    <h1>JavaScript Foundations</h1>
    <h2>Objects: Methods</h2>
    <script>


      var genericGreet = function() {
        return "Hello, my name is " + this.name;
      }

      var andrew = {
        name: "Andrew"
      }

      var ryan = {
        name: "Ryan"
      }

    </script>
  </body>
</html>

1 Answer

rydavim
rydavim
18,813 Points

This sounds like it might be an issue for Treehouse support. You can contact them directly using help@teamtreehouse.com. It may be they can help fix it so you can either finish the course, or update to the new version on your home page.