Write a JavaScript program to display the greetings?

Program: <html> <body> <script type="text/javascript"> var d=new  Date(); alert(d); document.write...

Program:
<html>
<body>
<script type="text/javascript">
var d=new  Date();
alert(d);
document.write(d);
var time=d.getHours();
document.writeln("< br >");
document.writeln(time);
if(time < 10)
{
document.write(" < b > Good morning< /b > ");
}
else
{
document.write("< b > Good day< /b > ");
}
</script>

<p>this example demonstrates the If statement</p>

<p>if the time on your browser is less than 10, you will get a good morning</p>

</body>

</html>

Out Put:

greeting

Related

Web Technology 1439350951916488904

Post a Comment

emo-but-icon

item