Previous Example-|-Next Example-|-Return to Chapter Listing

Example 6.8:
Greater Than or Equal To (>=)


Welcome to this Web page, and

If you arrived at this Web page during the morning, the above message will say Good Morning. If you arrived in the afternoon, it will say Good Afternoon. (Whose morning and afternoon? It depends on the system time set on your computer.)
This is the script we used: Welcome to this Web page, and <SCRIPT LANGUAGE="JavaScript"> <!-- var dToday = new Date() var nHours = dToday.getHours() if (nHours >= 12) { document.write("Good Afternoon.") } else { document.write("Good Morning.") } //--> </SCRIPT>
Previous Example-|-Next Example-|-Return to Chapter Listing