app.get('/', function (req, res) {
res.send('Hello World!');
});
I know what to do with above code but I want to up my level so I can know how is it look like at the back.
my guess is below
var app = {
get:function(first, second){
first= function(){
//do something
},
second = return second(){
}();
}
}
I'm sure my guess is wrong btw..