JS Can Build Pages
JavaScript can add to a page using
the document.write command ...
<html><head><title>My Test Page</title></head>
  <body>
    The sum  2.0 + 2.0 equals
    <script language="JavaScript">
   document.write(2.0 + 2.0);
    </script>
  </body>
</html>