JavaScript Hello World
Hello World in JavaScript
To write JavaScript code within the HTML page we will use the tag: htmlspecialchars().
Syntax
<script>
//JavaScript code
</script>
For example, to display hello world message using JavaScript code, we will write below code:
CODE/PROGRAM/EXAMPLE
<html>
<head>
<script>
document.write('Hello World!!');
</script>
</head>
<body>
</body>
</html>
//Output :
Hello World!!