"Hello JavaScript"を出力します。
document.write("Hello JavaScript");
Hello JavaScript
下記のhtmlソースでJavaScriptを実行してます。 <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=Shift_JIS"> <title>ベースのhtml</title> </head> <body> <script type="text/javascript" src="01-hello.js"> </script> </body> </html>