노드 서버 만들때 


클라이언트 요청의 최초 진입점을




어떤사람은 


http.createServer(function(req, res){
...
}).listen(80, "127.0.0.1");

이렇게하고 







어떤사람은 


var server = http.createServer(function(req, res){

...

}).listen(80, "127.0.0.1");

이렇게 하는 데 



두 개의 차이점이 뭐임?