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>

Run it...   »

Example Result