JScript Math 物件
更新:2007 年 11 月
Math 物件有一些內建屬性 (Property) 和方法。這些屬性是特定的數字。
使用 Math 物件
其中一個特定數字是 pi 的值 (大約 3.14159...),這是下列範例中使用的 Math.PI 屬性值。
// A radius variable is declared and assigned a numeric value.
var radius = 4;
var area = Math.PI * radius * radius;
// Note capitalization of Math and PI.
Math 物件的內建方法之一是指數方法或 pow,它會將數字提升為指定的乘冪數。下列範例同時使用 pi 和指數。
// This formula calculates the volume of a sphere with the given radius.
var volume = (4/3)*(Math.PI*Math.pow(radius,3));
另一個範例如下所示︰
var x = Math.floor( Math.random()*10 ) + 1;
您不能明確建構 Math 物件,程式可以隨時使用它。