Question: using javaScript Modify the following program so that it will print Good Morning!, Good Afternoon! or Good Evening instead according to the following logic: Midnight

using javaScript

Modify the following program so that it will print Good Morning!, Good Afternoon! or Good Evening instead according to the following logic:

Midnight till noon: Good morning (midnight inclusive, noon exclusive)

Noon till 5:00 PM: Good afternoon (noon inclusive, 5:00 PM exclusive)

5:00 PM till midnight: Good evening (5:00 PM inclusive, midnight exclusive)

// hello.js // This is a client-side JavaScript program that tells the time. // It is meant to be embeded in a web page named "hello.html". function displayHello() { document.getElementById("displayArea").innerHTML="Hello, there! Current time is: " + new Date(); } 

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!