【サンプル1】 ■HTMLファイル <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html> <head> <meta http-equiv="content-type" content="text/html;charset=utf-8"> <script type="text/javascript" src="test.js"></script> <title>Sample</title> </head> <body> <p>JavaScript Speed Test</p> <div id="outputArea"></div> </body> </html> ■スクリプトファイル (test.js) window.onload = function() { var num = 100000; srcT

