JAVASCRIPT Modify this program and make the greetings to be GoodMorning, Good Afternoon and Good Evening according to the samelogic as in Part One of this lab.
Midnight till noon: Good morning (midnight inclusive, noonexclusive)
Noon till 5:00 PM: Good afternoon (noon inclusive, 5:00 PMexclusive)
5:00 PM till midnight: Good evening (5:00 PM inclusive, midnightexclusive)
var http = require(‘http’);
var server = http.createServer(function (request, response) {
var now = new Date();
response.write(“Hello there! Current time is ” + now);
response.end();
});
server.listen(3333);
console.log(“Server is running at http://localhost
Expert Answer
An answer will be send to you shortly. . . . .