`var req = http.request(options, function(res)
{
hh=res.headers["last-modified"]; /* hh is global variable */
});req.end();
/*print the last modified time of file that stored in hh
console.log(hh);
req.end 后获取 hh 中的值后如何使用 hh?