math.pi 約等於3.14159
alert
(math.
round
(3.5))
;//四捨五入 4
alert
(math.
random()
);//0-1之間隨機數
alert
(math.
max(10,
20,30)
);//返回較大數 30
alert
(math.
min(10,
20,30)
);//返回較小數 10
alert
(math.
abs(-10
));//返回絕對值 10
alert
(math.
ceil
(3.1))
;//向上取整 4
alert
(math.
floor
(3.9))
;//向下取整 3
/* math.pow(x, y);
求 x的y次方。 x是底數,y是指數。
*/alert
(math.
pow(2,
5));
//32
alert
(math.
sqrt(4
));//開平方 2
引數:都應該是弧度。 math.pi = 180 弧度
1弧度 = math.pi / 180
//正弦/余弦/正切
alert
(math.
sin(
30* math.pi/
180));
alert
(math.
cos(
60* math.pi/
180)
);
js Math物件常用方法
math 物件用於執行數學任務。math 物件並不像 date 和 string 那樣是物件的類,因此沒有建構函式 math js 中math物件的常用方法 1.基本方法 math.round 5 2 對引數四捨五入為最接近的整數 3 math.ceil x 向上取整,有小數就整數部分加1 math...
js Math物件 Date物件
var value math.pi var value math.sqrt 15 產生固定範圍隨機數公式 值 math.floor math.random 可能值的總數 第乙個可能的值 function selectfrom lowervalue,uppervalue 物件屬性 e 返回算術常量 e...
JS Math物件 日期物件 函式 定時器
var br document.write math.sqrt 9 br 開平方 document.write math.abs 9 br 絕對值 document.write math.pi br 3.141592653589793.document.write math.pow 2,10 br ...