Quotes help make search much faster. Example: "Practice Makes Perfect"

Saturday, October 19, 2013

#Codeschool Sample Solution to Hello You



var http = require('http');

http.createServer(function(request, response) {
  // Answer goes here.
  response.writeHead(200, {"Content-Type": "text/plain"});
  response.write("Hello, this is World");
  response.end();
}).listen(8080);

No comments:

Post a Comment


This is an example of scrolling text using Javascript.

Popular Posts