JavaScript First Example - Hello world
Example
<html>
<head>
<title>Hello world</title>
</head>
<body>
<script type="text/javascript">
document.write("Hello world!");
</script>
</body>
</html>
Example Result
Example
<html>
<head>
<title>Hello world</title>
</head>
<body>
<script type="text/javascript">
document.write("Hello world!");
</script>
</body>
</html>
Example Result