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

I can't understand how the URL l that we gave to the program functions as we want to.

Hello, why do we put this '/' in the if statement? what does that have to do with our URL? explain to me if you can why do we put that? I mean in this video the teacher didn't explain clearly why we put this instead of some sort of a normal URL

function home(request, response) {
  if(request.url === '/') {
    response.writeHead(200, {'Content-Type': 'text/plain'});
    response.write('Header\n');
    response.write('Search\n');
    response.end('Footer\n');
  }
}

Thanks, Stavros