Social Icons

Pages

JAVA EXample to GeT the Greetings

<!DOCTYPE html>
<html>
<body>

<p>Click the button to get a greeting.</p>

<button onclick="myFunction()">Try it</button>

<p id="demo"></p>

<script>
function myFunction()
{
var x="";
var time=new Date().getHours();
if (time<12)
  {
  x="Good day";
  }
else if (time<16)
 {
 x="Good afternoon";
 }
else if (time<19)
 {
 x="Good evening";
 }
else
 {
 x="Good night"
 }
document.getElementById("demo").innerHTML=x;
}
</script>

</body>
</html>






Click the button to get a greeting.