JavaScript Basic Program

This basic javascript program is used to output a Hello message in the Browser. Javascript code must be inserted inside

<html>
<head>
<title>my javascript</title>
</head>
<body>
<script language="javascript" style="text/javascript">
document.write("Hello World!!");
</script>
</body>
</html>

Try Live Example: http://codepen.io/pen/


Congratulations! Chapter Finished. Learn more about the similar topics:
Exercises & Assignments
No Content Found.
Interview Questions & Answers
No Content Found.