location Javaスクリプトのオブジェクト passwordオブジェクト

mathオブジェクト

Mathオブジェクトは組込オブジェクトで、数学関係の関数や定数を含みます。

シンタックス

Mathオブジェクトのプロパティやメソッドを使用する場合、次のように指定します。

	
	
	Math.プロパティ名
	
	Math.メソッド名(パラメータ)
	
	
数学の定数がプロパティとなっており、π(円周率)の場合はMath.PIとして使用できます。また、すべてのプロパティやメソッドへMath.を付けるのが面倒であるため、with式を使用してMath.は省略される場合があります。

	
	
	with (Math) {
	   a = PI * r * r
	   y = r * sin(theta)
	   x = r * cos(theta)
	}
	
	

プロパティ

メソッド

	
	
	<script>
	
	document.write(Math.random());
	document.write("<p>");
	document.write(Math.sin(Math.PI/2));
	
	</script>
	
	



Copyright (C) 1996-2003 by Yasukazu Yokoi. All Rights Reserved.