How to Print a Message in JavaScript

In this tutorial, you will learn how to print a message in JavaScript. JavaScript is the programming language of HTML and the Web. JavaScript is easy to learn. 


Why Study JavaScript?

JavaScript is one of the 3 languages all web developers must learn:
   1. HTML to define the content of web pages.
   2. CSS to specify the layout of web pages.
   3. JavaScript to program the behavior of web pages.


Web pages are not the only place where JavaScript is used. Many desktop applications and server programs use JavaScript.


//Print Message in JavaScript 

<html>
<head>
<title>First Page</title>
</head>
<body>
<center>
<h1>First JavaScript Page</h1>
<script type="text/javascript">
document.write("<hr>");
document.write("Welcome to CodeTextPro");
document.write("<hr>");
</script>
</center>
</body>
</html>



The output of the program:

print message in javascript
Message Print in JavaScript



Post a Comment

0 Comments