高度な演算を行う


動作ブラウザ 【 IE:3.0  NN:2.0
Internet Explorer Netscape Navigator DreamPassport iCab
3.0x 4.0x 4.5 5.0x 5.5 2.0x 3.0x 4.0x 4.x 6.0 2 3 2.x
Windows - - -
Macintosh - - -
UNIX - - - - - - - -
Dreamcast - - - - - - - - - - -

ポイント n = Math.sin(45 * Math.PI / 180); n = Math.cos(45 * Math.PI / 180); n = Math.pow(2,160);
説  明 Mathオブジェクトを使うことにより複雑な演算を行うことが可能になります。
サンプル <html> <head> <title>高度な演算を行う</title> </head> <body> <script language="JavaScript"><!-- n = Math.sin(45 * Math.PI / 180); document.write("Math.sin = ",n,"<br>"); n = Math.cos(45 * Math.PI / 180); document.write("Math.cos = ",n,"<br>"); n = Math.pow(2,16); document.write("Math.pow(2,16) = ",n,"<br>"); // --></script> </body> </html>
補足説明 sin,cos,tanなど三角関数の引数はラジアンです。度を使う場合は「角度×Math.PI / 180」としてラジアンに変換する必要があります。

■サンプルスクリプトを実行する >>実行
■各ブラウザでの動作結果を見る >>View!

写真素材 PIXTA